elf Posted June 13, 2003 Posted June 13, 2003 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??? Quote
Leaders dynamic_sysop Posted June 13, 2003 Leaders Posted June 13, 2003 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 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.