Need help opening a Command Window in VB6 on Win2K

R

RJ Web

I have a DOS program that needs to run in a Full Screen DOS window
when running on WIN2000. I have not discoverd how to set up the call
such that WIN2000 switches to full screen mode, as if I pressed
ALT+Enter.


The program I'm trying to run will not execute properly unless I
switch to full screen.


Thanks in advance for working suggestions :)



Here's the code I'm using now:


Private Sub Command1_Click()
Dim AppToLaunch As String
Call ExecuteAndWait("C:\EMP10\emp10.exe", "C:\EMP10\")
End Sub



Public Sub ExecuteAndWait(cmdline$, SDir$)
Dim NameOfProc As PROCESS_INFORMATION
Dim NameStart As STARTUPINFO
Dim X As Long


NameStart.cb = Len(NameStart)
NameStart.wShowWindow = 3
X = CreateProcessA(0&, cmdline$, 0&, 0&, 0&,
NORMAL_PRIORITY_CLASS, 0&, SDir$, NameStart, NameOfProc)
X = WaitForSingleObject(NameOfProc.hProcess, INFINITE)
X = CloseHandle(NameOfProc.hProcess)
End Sub


-----
Type STARTUPINFO
cb As Long
lpReserved As String
lpDesktop As String
lpTitle As String
dwX As Long
dwY As Long
dwXSize As Long
dwYSize As Long
dwXCountChars As Long
dwYCountChars As Long
dwFillAttribute As Long
dwFlags As Long
wShowWindow As Integer
cbReserved2 As Integer
lpReserved2 As Long
hStdInput As Long
hStdOutput As Long
hStdError As Long
End Type


Type PROCESS_INFORMATION
hProcess As Long
hThread As Long
dwProcessID As Long
dwThreadID As Long
End Type


Global Const NORMAL_PRIORITY_CLASS = &H20&
Global Const INFINITE = -1&
Declare Function CloseHandle Lib "kernel32" (hObject As Long) As
Boolean
Declare Function WaitForSingleObject Lib "kernel32" (ByVal hHandle As
Long, ByVal dwMilliseconds As Long) As Long
Declare Function CreateProcessA Lib "kernel32" (ByVal
lpApplicationName As Long, ByVal lpCommandLine As String, ByVal
lpProcessAttributes As Long, ByVal lpThreadAttributes As Long, ByVal
bInheritHandles As Long, ByVal dwCreationFlags As Long, ByVal
lpEnvironment As Long, ByVal lpCurrentDirectory As String,
lpStartupInfo As STARTUPINFO, lpProcessInformation As
PROCESS_INFORMATION) As Long
 
F

Fergus Cooney

Hi RJ,

Workaround:
Create a shortcut to your application and set the properties so that it
runs in full-screen mode. Then, in your program, launch the shortcut rather
than the exe.

Regards,
Fergus
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top