QUOTE(koolazngy94 @ 12 Aug, 2008 - 02:21 PM)

For EX: I login neopets, myspace, ...etc, How do i let it log in?
CODE
Private Sub Command1_Click()
If Command1.Caption = "Click To Start" Then
Command1.Caption = "Start"
Text1.Enabled = True
Text2.Enabled = True
Timer1.Enabled = False
Else
If Command1.Caption = "Start" Then
Command1.Caption = "Stop"
Text1.Enabled = False
Text2.Enabled = False
Timer1.Enabled = True
Else
Command1.Caption = "Start"
Text1.Enabled = True
Text2.Enabled = True
Timer1.Enabled = False
End If
End If
End Sub
Private Sub Credit_Click(Index As Integer)
MsgBox "Credit goes to koolazngy94@yahoo.com"
End Sub
Private Sub Exit_Click(Index As Integer)
End
End Sub
Private Sub Form_Load()
End Sub
Private Sub Helpi_Click(Index As Integer)
MsgBox "Click on ""Click To Start"" then enter your username and your password and click start!"
End Sub
Private Sub Label3_Click()
End Sub
Private Sub Label4_Click()
End Sub
Private Sub Label6_Click()
End Sub
Private Sub Text1_Change()
End Sub
Private Sub Text2_Change()
End Sub
Private Sub Timer1_Timer()
Label6.Caption = Val(Label6.Caption) + 1
End Sub
I think I see a problem with your code right now...Your msgbox code:
MsgBox "Click on ""Click To Start"" then enter your username and your password and click start!"
I don't know how you're supposed to utilize quotation marks INSIDE a msgbox (I'm sure it can be done)---but you can't do what you're doing. I'll explain:
here's what it's seeing:
Whenever it sees a quotation mark, it assumes it's the starting & ending point of blocks of text. It doesn't know how to handle quotation marks like that
It thinks: OK I'll print "click on" ...then it sees another quotation mark...but it expects you to have an & between each thing, and it isn't seeing the & sign before the next quote, so it's freaking out.
If you had the & signs, it would just think "click on Click to Start then enter your username and your password & click start!"
I'm not sure about the rest though
Anyone else?