Subj : Re: Using Turbo Debugger and GetProcAddress To : borland.public.cpp.borlandcpp From : Corey Sellers Date : Wed Dec 15 2004 04:27 pm That's true, the DLL is obviously loaded, since the call goes through properly, but when I add the DLL and select "Symbol load", it says "DLL not loaded". Hmmm.... >>> Bruce Salzman 12/15/04 4:01 PM >>> > The problem is before I call the function, the DLL isn't loaded so > the > debugger can't load the symbol table. However, once I call the > function, > the debugger's status says "RUNNING", and I can't break into it > (hitting > Ctrl-Break doesn't do it). Once the function has completed, then I > can get > control again, but by then its too late. > The DLL must be loaded (via LoadLibrary), or you wouldn't have hDLL to call GetProcAddress with. Regards, Bruce .