hey guys,
i'm making a kool program for a game
but when i debug the program it keep coming up with expected = , when i tried this code:
Shell ("Ping start" + Combo1.Text + ".blahnin.com -t", vbhide)
is there a way to fix it? or is there another way i can hide this shell app?
btw here is my code:
If Combo1.Text = "SELECT WORLD" Then
MsgBox "Please select World", vbExclamation, "Select World"
Else
If Option1.Value = True Then
Call Start
End If
End If
End Sub
Sub Start()
Shell ("Ping start" + Combo1.Text + ".blahnin.com -t", vbhide)
End Sub