TWLan Forum
Process starten mit Visual Basic ohne Window - Printable Version

+- TWLan Forum (https://twlan.org)
+-- Forum: Deutsch (https://twlan.org/forumdisplay.php?fid=1)
+--- Forum: Gott und die Welt (https://twlan.org/forumdisplay.php?fid=4)
+--- Thread: Process starten mit Visual Basic ohne Window (/showthread.php?tid=1718)



Process starten mit Visual Basic ohne Window - abbar-2 - 16.06.2009

Hallo,

meine Frage ist wie kann ich ein Process starten ohne das sich ein Fenster öffnet?

Das funktioniert nicht:

Code:
Dim Info As New ProcessStartInfo

Info.FileName = "C:/xampp/apache_start.bat"
Info.CreateNoWindow = True
Dim ExterneAnwendung As Process = Process.Start(Info)



RE: Process starten mit Visual Basic ohne Window - iNk - 16.06.2009

Indem du dir die ID des Fensters besorgst und es damit versteckst


RE: Process starten mit Visual Basic ohne Window - keving - 18.06.2009

Versuchs mal hiermit:
Code:
Dim windowstyle
Set WshShell = WScript.CreateObject("WScript.Shell")
windowstyle = 1 ' =0: Verbergen, =1: Normal, =2: Minimieren, =3: Maximieren
WshShell.Run "notepad.exe", windowstyle, True ' True: Warten bis beendet

mfg keving


RE: Process starten mit Visual Basic ohne Window - abbar-2 - 18.06.2009

hab es geschafft thx