
October 6th, 2006, 03:14 AM
|
|
Registered User
|
|
Join Date: Oct 2006
Posts: 26
Time spent in forums: 6 h 12 m 8 sec
Reputation Power: 0
|
|
|
Listbox details into textbox when listbox is clicked
Can anyone help me please on on how to start with this project.
when clicking on the listbox (displayed with a column data from a database table) the data details will be displayed
on textboxes just beside the listbox.
Protected Sub ListBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
TextBox1.Text = ListBox1.SelectedItem.ToString
this only displays the data on listbox into one of the textboxes. how about its details? can i display it in the textboxes?
|