Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: B00gyeMan
  • Content: Threads
  • Order by date
  1. B00gyeMan

    Two ActiveX questions

    Question 1: I have an assembly writen in c#, marked COM visible. And a CAB setup project containing the project output of that assembly. Typically, the .aspx page contains a <object id="myControl1" name="myControl1" classid="...guid...here..." style="width:100%; height:100%"...
  2. B00gyeMan

    ActiveX cab deployment

    I have an assembly writen in c#, marked COM visible. And a CAB setup project containing the project output of that assembly. Typically, the .aspx page contains a <object id="myControl1" name="myControl1" classid="...guid...here..." style="width:100%; height:100%" codebase="myCAB.cab"></object>...
  3. B00gyeMan

    Pesky little... breakpoint

    Came to work today... [neutral] Fired up VS 2005... loaded the solution and attempted to reproduce a bug in a C# web app. Set some breakpoints, started IE, and went to pay a visit to that nasty page... Surprise, for the breakpoints set in that code-behind page, VS 2005 says that "The breakpoint...
  4. B00gyeMan

    IIS6 connection timeout

    Hi, I've been having some problems that ultimately seem to be related to "Connection timeout" in IIS6. I'm building an ASP.NET application and some of the pages are doing long processing before they are displayed (reports, for example). If the processing takes more than 2 minutes, I can see an...
  5. B00gyeMan

    Should I change the company?

    I'll be brief, as much as possible. I work for a software company that is focused on delivering highly specialized software to (mostly) telcos. Some time ago, a simple member of the QA team was mysteriously invested as "Product Manager". Besides the fact that she was very eager to impose her...
  6. B00gyeMan

    ASP.NET 2.0 hungs

    It simply hungs. That's all... I've been inspecting everything but found nothing. In order to make it work again I have to restart the IIS or sometimes it helps only to kill the asp worker process. Help?!
  7. B00gyeMan

    Master pages and inline variables

    I'm attempting to use master pages and I cannot link to a CSS who's path is dinamically generated and put in an inline variable. In the master page's code file there is public string sCSSPath = GetCommonCSSPath(); In the master page in the <head> section I have: <link href="<%sCSSPath%>"...
  8. B00gyeMan

    Cannto figure out TAdoCommand behaviour

    I have tracked a problem down to the execution of a TAdoCommand which uses a stored procedure to insert records in the database. The point is that the record isn't inserted and no exception is thrown. Due to the fact that the situation appears to occur randomly and rarely it is impossible to...
  9. B00gyeMan

    LibJingle

    Has anyone been able to get Google's examples included in the libjingle library to compile using any version of Visual Studio? For example I've found there are missing files (like win32.h) from the library itself...
  10. B00gyeMan

    COM Interop

    I have a in-process COM server which was not writen by me (no sources available) and which I use from a windows service written in C#. But sometimes, in some certain conditions (which I cannot prevent occuring) the COM object crashes and so the windows service (exception handling is all right...
  11. B00gyeMan

    AOP

    Hi. This is a question concerning AOP and .NET. Here it is: is it possible to implement AOP concepts in .NET without inheriting from ContextBoundObject? Because this is a huge limitation, in my opinion...
  12. B00gyeMan

    Assembly load

    I would like to intercept when assembly is loaded by the CLR (any assembly and then filter them and do some processing according to my needs). So far, the only way is by using AOP. Any other suggestions?
  13. B00gyeMan

    NMUDP problems

    Hi. I am trying to convert a win32 application to a COM object. The former application used a NMUDP component to receive data from other machines. Actually, it used a class which is directly derived from NMUDP. The point is that I've made the conversion (no big deal, I am perfectly sure I've...
  14. B00gyeMan

    Controlling the timeout

    I have this situation: 1) There is a server on machine S which exposes type T through .NET remoting. 2) There is a client on another machine C which attempts to remotely instantiate the type T on machine S using Activator.GetObject method. If the S machine is running but the server application...
  15. B00gyeMan

    Radius protocol

    Hi. Is there an example implementation of the RADIUS protocol in C#? Or any kind of serious documentation about the protocol? (except the RFC). Thanx.
  16. B00gyeMan

    Serial communication

    I was wondering if there's a way to communicate with the serial ports without using third party software or importing GetCommState, SetCommState, etc... from kernel32. Thanks in advance.
  17. B00gyeMan

    C# and Apache SOAP

    Since I didn;t have any luck with C++ I decided to turn to C# in writing a C# client consuming the services of an Apache SOAP server. The point is that I ran wsdl.exe using the wsdl file I was offered and the proxy was generated. Nice & tight, so far. I managed to make a request to the SOAP...
  18. B00gyeMan

    SOAP and C++

    Hi. I would need a tutorial on how to write a client for an Apache SOAP server application. I am interested in both managed & unmanaged C++. Thanks.
  19. B00gyeMan

    ADO question

    I didn't worked too much with databases (and with ADO, subsequently) and I would need to know how to build a parameterized query and use it (I'm more interested in queries, not stored procs because of the performance impact these queries have on Oracle's instructions cache). Also I understood...
  20. B00gyeMan

    Driver

    I'm not sure if this is the right forum to start this thread, but I'll fire away anyway: Is anyone around who can tell me how to create a kernel mode driver? Or provide some links to docs & a skeleton (if that is not too much :) ). Thanx in advance.

Part and Inventory Search

Back
Top