Arcade Prehacks

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

    Join Date
    Aug 2009
    Location
    South Dakota
    Posts
    101

    Teach me a few things

    i know the basics on making trainers but i do not know many things like how to click a button and make another form pop up or how to use checkboxes or how to download Vb6. I wanna know how to do these things so can someone pm me and teach me i would be very appreciated!

  2. #2

    Join Date
    Jun 2008
    Location
    New York
    Posts
    1,995

    Re: Teach me a few things

    You want vb08, not vb06.
    VB08 download: http://www.microsoft.com/express/download/#webInstall

    Code for having a new form show up is;
    Code:
    Dim Form2 As New Form2
            Form2.Show()
    How to use checkboxes... when I hear checkboxes I think if.
    Code:
    If CheckBox1.Checked Then
                'What to perform
            Else
                'What to perform
            End If
    I made a quick project to demonstrate the above.
    Attached Files Attached Files

  3. #3

    Join Date
    Aug 2009
    Location
    South Dakota
    Posts
    101

    Re: Teach me a few things

    thanks very helpful
    i got vb08 just wanted to try vb6

  4. #4
    F3ar's Avatar
    Join Date
    Jun 2009
    Location
    Pennsylvania, USA
    Posts
    197

    Re: Teach me a few things

    Justin, you do realize that if you have the other form created already, that you only need to put:
    Code:
    Form2.Show()
    You don't need to do anything with Dim

    @Topic Creator - You can learn come codes here. If you have any other questions feel free to ask me on MSN, AIM, GTalk, or Yahoo.

    [email protected] - Gtalk
    [email protected] - AIM
    [email protected] - MSN
    [email protected] - Yahoo

  5. #5

    Join Date
    Jun 2008
    Location
    New York
    Posts
    1,995

    Re: Teach me a few things

    Quote Originally Posted by F3ar
    Justin, you do realize that if you have the other form created already, that you only need to put:
    Code:
    Form2.Show()
    if your form's name is "Clicked second button" then you'll want to declare it... but you're right.

  6. #6
    F3ar's Avatar
    Join Date
    Jun 2009
    Location
    Pennsylvania, USA
    Posts
    197

    Re: Teach me a few things

    Quote Originally Posted by JustinCredible
    Quote Originally Posted by F3ar
    Justin, you do realize that if you have the other form created already, that you only need to put:
    Code:
    Form2.Show()
    if your form's name is "Clicked second button" then you'll want to declare it... but you're right.
    Wait what?

    For a button all you would need is:
    Code:
    Form2.Show()
    Nothing else.

    For a checkbox you would need:
    Code:
    If checkbox1.checked = true then
    Form2.show()
    else label1.text = "You didn't check the checkbox."
    EndIf

  7. #7

    Join Date
    Jun 2008
    Location
    New York
    Posts
    1,995

    Re: Teach me a few things

    I'm talking about...
    In terms of how it looks in the script, you don't want to see Button1WasClickedAndblah.show() it'd be easier to see b1wc.show() for example, in terms of functionality... well, it doesn't really matter.

  8. #8
    F3ar's Avatar
    Join Date
    Jun 2009
    Location
    Pennsylvania, USA
    Posts
    197

    Re: Teach me a few things

    Quote Originally Posted by JustinCredible
    I'm talking about...
    In terms of how it looks in the script, you don't want to see Button1WasClickedAndblah.show() it'd be easier to see b1wc.show() for example, in terms of functionality... well, it doesn't really matter.
    Now that I took the time to read this and not just scim over it, I understand what you're saying. You're saying that your lazy lul. Can't type out a full name? It gives it too you anyway..

  9. #9

    Join Date
    Jun 2008
    Location
    New York
    Posts
    1,995

    Re: Teach me a few things

    Quote Originally Posted by F3ar
    Quote Originally Posted by JustinCredible
    I'm talking about...
    In terms of how it looks in the script, you don't want to see Button1WasClickedAndblah.show() it'd be easier to see b1wc.show() for example, in terms of functionality... well, it doesn't really matter.
    Now that I took the time to read this and not just scim over it, I understand what you're saying. You're saying that your lazy lul. Can't type out a full name? It gives it too you anyway..
    I'm saying that it's quicker, especially if you are going to be showing a new form a lot... how lazy I am has nothing to do with it.

  10. #10
    F3ar's Avatar
    Join Date
    Jun 2009
    Location
    Pennsylvania, USA
    Posts
    197

    Re: Teach me a few things

    Quote Originally Posted by JustinCredible
    Quote Originally Posted by F3ar
    Quote Originally Posted by JustinCredible
    I'm talking about...
    In terms of how it looks in the script, you don't want to see Button1WasClickedAndblah.show() it'd be easier to see b1wc.show() for example, in terms of functionality... well, it doesn't really matter.
    Now that I took the time to read this and not just scim over it, I understand what you're saying. You're saying that your lazy lul. Can't type out a full name? It gives it too you anyway..
    I'm saying that it's quicker, especially if you are going to be showing a new form a lot... how lazy I am has nothing to do with it.
    Most of the time the form will be named "Form#" and the person will only call it once or twice, I know that with my AQW Trainer that I made in Delphi/Pascal I only had to call forms once or twice, so it's really not needed for someone who's just beginning.

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
  •