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?
Radio buttons and labels in visual basic 2010 express
Collapse
X
-
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 :) -
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
Comment