I have a cgi process with a Harbour executable.
Is there a way to have access to a debugger for the Harbour exe when running under IIS?
Don Lowenstein
www.laapc.com
www.laapc.com
I have a cgi process with a Harbour executable.
Is there a way to have access to a debugger for the Harbour exe when running under IIS?
#pragma DEBUGINFO=ON
How does this work?
Does the debugger appear when it hits an altd()?
usually if I have the debugger in the .exe file IIS hangs when it hits an altd()
Dear Don,
a CGI app can not use the GUI interface so you can only generate a log file (ascii file) with some usefull info for debugging
Afaik, there is no way to use the debugger from it
#include "windows.h"
#include "hbapi.h"
HB_FUNC( HB_DEBUG_STRING )
{
OutputDebugString( hb_parcx( 1 ) );
}hb_debug_string( "your string message" )