Search:

Type: Posts; User: il96

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    2,559

    Register DLL w/o regsvr32.exe

    Would this work?


    int regDll(char *dllPath)
    {
    if (strlen(dllPath) == 0) return 1;

    /* get handle to dll */
    HINSTANCE hGetProcIDDLL = LoadLibrary(dllPath);
  2. Replies
    4
    Views
    2,447

    Thanks Fordy. I now have another question. This...

    Thanks Fordy.
    I now have another question. This app after it finishes copying and registering DLLs launches another application. Is it possible to end this process after the new one is launched?...
  3. Replies
    4
    Views
    2,447

    How to make an invisible form or console

    I am writing a simple program that copies a few files and calls regsvr32 to register dlls. Right now I do this as Win32 Console App and I want to hide the console window. Does anybody know how to do...
  4. Replies
    1
    Views
    972

    Window (dialog) w/o border

    I want to make a non-movable, non-resizeable window/dialog that doesn't have theborder on top (blue bar). In VB it's borderStyle 0, in C++ it's...?

    Thanks
Results 1 to 4 of 4