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 bkrike 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: hencox
  • Content: Threads
  • Order by date
  1. hencox

    CreateWindow (for newbie)

    Hi! I'm trying to create an invisible window using CreateWindow(). Which is the easiest way to do this? I've had a look at the parameters of this call. I think some of them are cryptic (like lpClassName and hInstance). I've also tried calling this function, but I always get error #1407...
  2. hencox

    Calling functions from DLLs

    Hi! I'm trying to call a function from within a DLL by using this code: FUNCPNT* fP; HINSTANCE hLib = LoadLibrary("the_api.dll"); if(hLib) { fP = (FUNCPNT*)GetProcAddress(hLib,"TheDLLFunction"); } //the calling of the function (*fP)(); This gives me the error...
  3. hencox

    AnsiString in Visual C++ ?

    Hello! In my project in Visual C++ I need to include an old header file that defines a struct that among other things uses AnsiString. The header file doesn't state any includes that might contain this class (or whatever it is). I get a compiler error when trying to compile this. Is there...

Part and Inventory Search

Back
Top