
Originally Posted by
Geomatrical the 7th
You can also make something to create a process, just being random.
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim OFD As New OpenFileDialog
OFD.Title = "Create process"
OFD.Filter = "All files (*.*)|*.*"
OFD.ShowDialog()
If OFD.FileName.Length >= 1 Then
Process.Start(OFD.FileName)
End If
End Sub
thanks for sharing
you can also use a textbox to type in the name of the process as well kinda like windows task manager does