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 Mike Lewis 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: *

  1. morequester

    Could I get return handle from DllImport?

    Hi buddy, I used LoadLibrary in C++. Now I changed it to C#. C++ codes: hKernelLib = LoadLibrary("kernel32.dll"); C# codes: [DllImport("kernel32.dll")] The problem is I need hKernelLib (which is the return value from invoking LoadLibrary), and it will be a parameter for the next API...
  2. morequester

    how to change typedef from C++ to C#?

    Hi buddy, How could I change typedef DWORD (__stdcall *pRegFunction)(DWORD, DWORD); in C++ to C#?
  3. morequester

    Tough question about keep running an app when logoff win98

    Maybe I can explain it more detailedly. This is a win32 app. On WinNT or up, it runs as a service. But on Win98, there is no service, so we have to do it as a normal app. I know this is possible, because we have an app running like this, but we don't know how it does. For stormbind, Thanks...
  4. morequester

    Tough question about keep running an app when logoff win98

    Hi buddy, Anyone knows how could an application keep running when logoff win98? It means this application never exits when user logoff, then logon. Thanks in advance.

Part and Inventory Search

Back
Top