Subj : Re: Using Turbo Debugger and GetProcAddress To : borland.public.cpp.borlandcpp From : Bruce Salzman Date : Wed Dec 15 2004 05: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 .