What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » VB.NET radio buttons help

VB.NET radio buttons help
Author: Message:
Kryptonate
Veteran Member
*****

Avatar

Posts: 2873
Reputation: 23
38 / Male / –
Joined: Jun 2003
RE: VB.NET radio buttons help
This works:
code:
Private Function grootte()
        If RadioButton1.Checked = True Then
            MessageBox.Show("button1")
        ElseIf RadioButton2.Checked = True Then
            MessageBox.Show("button2")
        ElseIf RadioButton3.Checked = True Then
            MessageBox.Show("button3")
        End If
    End Function

Private Function kleur()
        If RadioButton4.Checked = True Then
            MsgBox("button4")
        ElseIf RadioButton5.Checked = True Then
            MsgBox("button5")
        End If
    End Function

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        grootte()
        kleur()
    End Sub

11-04-2005 09:31 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
VB.NET radio buttons help - by Ezra on 11-04-2005 at 08:06 PM
RE: VB.NET radio buttons help - by Kryptonate on 11-04-2005 at 08:42 PM
RE: VB.NET radio buttons help - by Ezra on 11-04-2005 at 09:15 PM
RE: VB.NET radio buttons help - by Kryptonate on 11-04-2005 at 09:31 PM
RE: VB.NET radio buttons help - by Ezra on 11-04-2005 at 09:36 PM
RE: VB.NET radio buttons help - by Kryptonate on 11-04-2005 at 09:40 PM
RE: VB.NET radio buttons help - by Ezra on 11-04-2005 at 09:43 PM
RE: VB.NET radio buttons help - by Kryptonate on 11-04-2005 at 09:51 PM
RE: VB.NET radio buttons help - by Ezra on 11-04-2005 at 09:56 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On