Not a Member Yet,
Click here to Register

ID: 196
Viewed: 3565
Added: Apr 29, 2002
Version:
Snippet uploaded by: snippet
Written By: unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Hiding A DOS Window And Icon To hide a DOS Window or Icon, try using an API called WinExec with nCmdShow set to SW_HIDE to hide the DOS window. To use this technique, you must have the DOSPRMPT.PIF set to run in windowed mode (use the PIF editor). The while loop will wait until the WinExec SHELL is done before exiting. Leave it out if you don't have to wait for the SHELL to complete before going on with the program.

Highlight all by clicking in box
<!---Declaration--->
'Declare

Declare Function WinExec Lib "Kernel" (ByVal lpCmdLine As String, ByVal nCmdShow As Integer) As Integer

Declare Function GetModuleUsage Lib "Kernel" (ByVal hModule As Integer) As Integer

Global Const SW_HIDE = 0
Global Const SW_NORMAL = 1
Global Const SW_MAXIMIZE = 3
Global Const SW_MINIMIZE = 6


'Usage

R = WinExec("dosprmpt.pif /c YOUR DOS COMMAND HERE", SW_HIDE)

Do While GetModuleUsage(R) > 0

DoEvents
Loop

Highlight All
<!---Code--->
none;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!