Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Dropdownlist????

 

Does abyone knoes how to display the things u chose from the drop down list???

 

for example i have a dropdownlist which contained time and then i chose a time that i want but how to display it by using a label???

  • Leaders
Posted

what sort of dropdown list ? like a combobox dropdown?

   Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
       ComboBox1.Items.Add("text here")
   End Sub

   Private Sub ComboBox1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.Click
       Label1.Text = ComboBox1.SelectedText
   End Sub

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...