Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HotKey to MS-Dos Progs

MS DOS functions

HotKey to MS-Dos Progs

by  jnicks  Posted    (Edited  )
The 9x HotKey only goes to Win32 apps.

If you need to hotkey to a command procedure or older app the following VB5 will let you, just, when you make the icon be sure to put the rest of the command as parameters.

Code:
Sub Main()
  If 0 = Shell(Command$, 1) Then MsgBox " Could not launch " + Command$
End Sub

Field Use:

We have a Bat file called Cleanit.bat that wipes out caches, cookies, and cetera.

We Ctrl-Alt-B to clean out the temps and cache files. The cleanit is a list of DelTree's which wipes out directories.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top