In your main form put in on the form load sub
mainform.hide
passwordform.show
I'm too busy to make a more detailed reply.
I made A pass Thing But how to activate on the hack?
In your main form put in on the form load sub
mainform.hide
passwordform.show
I'm too busy to make a more detailed reply.
Last edited by radnomguywfq3; 09-29-2007 at 03:41 PM.
Hmm try this
- 2 text boxs
- 2 command buttons
Code:
Private Sub Command1_Click() <-- Insert this code into command.1
Dim User$, Pw$
User = "UserName" <-- Set Ur Username
Pw = "Password" <-- Set ur Pass
If Text1.Text = User And Text2.Text = Pw Then
MsgBox " Correct Login "
Unload Form1
Form2.Show
Else
MsgBox " Wrong userName And Or Password"
End
End If
End Sub
Private Sub Command2_Click()
End
End Sub
Then right click on Form1 and then go to Add> another form and that will be your Hack instead of the first because the first form will be the Log-In And remember to delete
<-- Set ur username
<-- Set ur password
Set 2nd box cancel and 1st box Log-In
Last edited by Synns; 09-29-2007 at 11:49 PM.
Yes.... then I press play and "login" but then It says: Object needed. How to set the hack form?
Uhh dude this is what you do
1st Form = Login
2nd Form = Hack
Right click on form1 and add another form .EXE file
Now that will be your hack.
But I wanna start 2 forms after the pass. How to do that?
(ALREADY DONE) THANKS ALOT!