05-17-2013, 08:55 AM
Ok,so I am devoloping a test program,that consists of a text box which you type in like stuff(kinda like a console).But only test1 opens.The rest doesnt.HELLPPPP
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "test1" Then
Process.Start("My.Resources.test1")
If TextBox1.Text = "author" Then
MsgBox("made by Chuggaism")
End If
End If
End Sub
End Class
HELLPPPP
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text = "test1" Then
Process.Start("My.Resources.test1")
If TextBox1.Text = "author" Then
MsgBox("made by Chuggaism")
End If
End If
End Sub
End Class
HELLPPPP