Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Process starten mit Visual Basic ohne Window
#1
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)
[Image: create.php?uid=511]
Reply
#2
Indem du dir die ID des Fensters besorgst und es damit versteckst
Kein Support per PM!
Reply
#3
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
[Image: create.php?uid=8114]
Reply
#4
hab es geschafft thx
[Image: create.php?uid=511]
Reply




Users browsing this thread: 1 Guest(s)