Arcade Prehacks

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1

    Join Date
    Aug 2008
    Location
    Above and beyond the valleys of contentment
    Posts
    1,217

    VB6 trainers-make them better


  2. #2

    Join Date
    May 2008
    Posts
    573

    Re: VB6 trainers-make them better

    i understand what you mean. but thats because its me...

    add some pictures to help and make some stuff more clear and with some more detail
    Just an FYI to everyone, I don't hack anymore. I have stuff that I do outside of this. Goodbye and goodluck

  3. #3

    Join Date
    Aug 2008
    Location
    Above and beyond the valleys of contentment
    Posts
    1,217

    Re: VB6 trainers-make them better

    Quote Originally Posted by sme11y
    i understand what you mean. but thats because its me...

    add some pictures to help and make some stuff more clear and with some more detail
    im gonna make a vid of it in a few minutes...it really works.

  4. #4

    Join Date
    Jun 2008
    Location
    Unknown Dungeon
    Posts
    1,513

    Re: VB6 trainers-make them better

    nice tut, took you quite a while lol

  5. #5

    Join Date
    Aug 2008
    Location
    Above and beyond the valleys of contentment
    Posts
    1,217

    Re: VB6 trainers-make them better

    Quote Originally Posted by axzus
    nice tut, took you quite a while lol
    yeah a while in making up all those vids. At first Im gonna get those vids. from somewhere else since the forum rules said no advertising, I need to make all those videos...unlucky.

  6. #6
    Senior Member
    Join Date
    Jul 2008
    Location
    Surrey,BC
    Posts
    255

    Re: VB6 trainers-make them better

    Sup,

    I Understand A Little Thanks Could You Make A Better Video & Add Some Pictures Thanks

  7. #7

    Join Date
    Jun 2008
    Location
    Unknown Dungeon
    Posts
    1,513

    Re: VB6 trainers-make them better

    Quote Originally Posted by mathewthe2
    Quote Originally Posted by axzus
    nice tut, took you quite a while lol
    yeah a while in making up all those vids. At first Im gonna get those vids. from somewhere else since the forum rules said no advertising, I need to make all those videos...unlucky.
    Great Job

  8. #8
    Senior Member
    Join Date
    Jun 2008
    Location
    Dra'kar
    Posts
    1,263

    Re: VB6 trainers-make them better

    Good Job!
    There's Just a couple of problems I have seen.


    1.

    Quote Originally Posted by Mathewthe2
    or this code if you want the main menu to close and open the trainer:

    Private Sub Command1_Click()
    form2.Show
    form1.Hide
    End Sub
    Wrong,

    It should be
    Private Sub Command1_Click()
    Me.Hide
    Form2.Show
    End Sub
    -------------------------------------------------------------------------------------------------------------------------------

    2.
    Quote Originally Posted by Mathewthe2
    If you want your trainer private then make up the passwords!!
    Here is the submit button(I made the code up but works)code(Note:command2 is invisible at first)


    Private Sub Command1_Click()
    If text1.text="your password" Then
    command2.visible=true
    label1.caption="correct password"
    Else
    command2.visible=false
    label1.caption="incorrect password"
    End If
    End Sub
    You're gonna cause a Error entering the code like that, You need to have spaces between the = signs, and the wording needs to be Capitalized..
    So it should look like this.

    Code:
    Private Sub Command1_Click()
    If Text1.Text = "your password" Then
    Command2.Visible = True
    Label1.Caption = "correct password"
    Else
    Command2.Visible = false
    Label1.Caption = "incorrect password"
    End If
    End Sub
    -------------------------------------------------------------------------------------------------------------------------------


    Other than that you did a Goood Job!!

  9. #9

    Join Date
    Aug 2008
    Location
    Above and beyond the valleys of contentment
    Posts
    1,217

    Re: VB6 trainers-make them better

    no it doesnt need to be...the vb will help you capitalize it itself...at least my version does.
    And for the me.hide my frds will be confused cause sometimes it will hide the whole project if you put it in the back...and mine also works so i made form1.hide more clearer than me.hide cause you could switch places but for me.hide you must put it at first.
    I dont want to mess up ppl who are new to this...thats why im doing this easier to do and more little errors...

    Edit:If i want to change the tutorial better, i could remove the text1.text and replace it with a InputBox and that would be harder and i could do a "dim password as string"but i didn't do it because if it was me from last year i would be even quite confused to even this tutorial...

  10. #10
    Senior Member
    Join Date
    Jun 2008
    Location
    Dra'kar
    Posts
    1,263

    Re: VB6 trainers-make them better

    Why would you use 'Dim password as String'

    Using that is just asking to be confused..

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •