Results 1 to 6 of 6
  1. #1
    SofaKingH4rd's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United Kingdom, England
    Posts
    1,751
    Reputation
    22
    Thanks
    146
    My Mood
    Buzzed

    Check Boxes [solved]

    Delete this please.

  2. #2
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Use radiobuttons

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  3. The Following User Says Thank You to Jason For This Useful Post:

    SofaKingH4rd (08-06-2011)

  4. #3
    SofaKingH4rd's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United Kingdom, England
    Posts
    1,751
    Reputation
    22
    Thanks
    146
    My Mood
    Buzzed
    Quote Originally Posted by Jason View Post
    Use radiobuttons
    I never thought of that. Thank you.

    Is this the correct code?
    Code:
    If RadioButton1.Checked Then
    
    Msg("You have chosen 6,500 NX")
    
    End If
    
    End Sub

  5. #4
    Exquizyth's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    134
    Reputation
    10
    Thanks
    65
    My Mood
    Angelic
    Quote Originally Posted by SofaKingH4rd View Post
    I never thought of that. Thank you.

    Is this the correct code?
    Code:
    If RadioButton1.Checked Then
    
    Msg("You have chosen 6,500 NX")
    
    End If
    
    End Sub
    If RadioButton1.Checked = true Then
    'do anything what ya want.
    End If
    End Sub

    -Busted-

  6. #5
    SofaKingH4rd's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    United Kingdom, England
    Posts
    1,751
    Reputation
    22
    Thanks
    146
    My Mood
    Buzzed
    Quote Originally Posted by Exquizyth View Post
    If RadioButton1.Checked = true Then
    'do anything what ya want.
    End If
    End Sub
    Yeah, I entered it wrong above, I knew it :P


    If RadioButton1.Checked = True Then

    MsgBox("Write any thing here")

    End If
    End Sub

  7. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    "Checked" is a boolean anyway, so your original code was right anyway.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  8. The Following User Says Thank You to Jason For This Useful Post:

    SofaKingH4rd (08-07-2011)

Similar Threads

  1. [Help]Check a Box[Solved]
    By ppl2pass in forum Visual Basic Programming
    Replies: 6
    Last Post: 04-26-2010, 03:43 AM
  2. [Help]Checking Lines[Solved]
    By ppl2pass in forum Visual Basic Programming
    Replies: 4
    Last Post: 03-29-2010, 10:36 AM
  3. [Help]Print Text Box [Solved]
    By zmansquared in forum Visual Basic Programming
    Replies: 7
    Last Post: 03-10-2010, 06:56 PM
  4. [Help]Basic Text Box[Solved]
    By FlashDrive in forum Visual Basic Programming
    Replies: 3
    Last Post: 03-06-2010, 10:54 PM
  5. check box
    By mrkprv in forum C++/C Programming
    Replies: 0
    Last Post: 06-19-2008, 05:54 AM