0

In the case of a sendto invocation, I would like to keep the application open, after it completes, so the user can look at it.

In the case of a dos window invocation, the user controls when the window closes.

The platform is XP using msvc 6

MPelletier
  • 16,256
  • 15
  • 86
  • 137
EvilTeach
  • 28,120
  • 21
  • 85
  • 141

1 Answers1

0

The shortcut you create in the SendTo folder can call:

C:\WINDOWS\system32\cmd.exe /k [your program path\program name]

The /k will keep the console up after the invocation.

akf
  • 38,619
  • 8
  • 86
  • 96