Externes
Externe Programme:
Imports System.Diagnostics
Imports Microsoft.VisualBasic.Interaction
Module ShellTest
Sub main()
' konsole
Dim pid As Integer = Shell _
("notepad.exe c:\test.txt", AppWinStyle.MaximizedFocus, True)
' prozess
Dim p As Process = _
Process.Start("http://www.dreamcodes.de")
Console.ReadLine()
End Sub
End Module
|