Re: how to debug win32 application running with tcltk wrapper

From: Ralf Fassel (ralfixx_at_gmx.de)
Date: 11/06/03


Date: 06 Nov 2003 12:22:05 +0100


* klaushoyer@yahoo.com (klaus)
| Are there command line options for my batch file program start which
| invoke the debugger (say visual studio) automatically?

Vice versa, start the debugger with your program:
   msdev YOURPROG

`msdev' should be in the `bin' directory of the `VC' subtree (on my
german system it is c:/Programme/devstudio/vc/bin, which I add to PATH
before starting msdev).

| What other options are there to run in debug mode?

You can attach to any running program by "Build->Attach to process" in
DevStudio.

R'