Radio buttons and labels in visual basic 2010 express

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mzsocial
    New Member
    • Dec 2012
    • 4

    #1

    Radio buttons and labels in visual basic 2010 express

    I want to make the radio button name show up in the label when click on I have 4 name vi, USA, antigua and Barbados I can get it to change to the name under the picture box why?
  • PsychoCoder
    Recognized Expert Contributor
    • Jul 2010
    • 465

    #2
    Bytes.com isn't a code writing service, we're a community of like-minded people who have come together to help others.

    Show us the code you're written to try and solve this issue (format it with the code tags button </CODE>) and any issues you're having and someone will be more than happy to help :)

    Comment

    • Mzsocial
      New Member
      • Dec 2012
      • 4

      #3
      Ty

      Ok thank you I will try and do it ASAP

      Comment

      • Mzsocial
        New Member
        • Dec 2012
        • 4

        #4
        Code:
        Public Class Form1
        	Dim i As Integer
        	Private Sub Rad1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Rad1.Click
        		Rad1.Enabled = False
        		Label1.Text = "Processing..."
        		Rad1.Enabled = True
        		'Label1.Text = "Ready..."
        	End Sub
        
        	Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        		Label1.Text = "Ready..."
        	End Sub
        End Class
        Last edited by zmbd; Dec 2 '12, 02:54 AM. Reason: [Z{Please use the <CODE/> formatting button to format your posted code and SQL}]

        Comment

        • Mzsocial
          New Member
          • Dec 2012
          • 4

          #5
          I got it nm Ty Ty Ty !!!!!!

          Comment

          Working...