Hi
I have created a DataList and I populate it with names and ID's
I wish to select the first item in the data list after it is populated.
Any ideas
Thanks
:cool:
Printable View
Hi
I have created a DataList and I populate it with names and ID's
I wish to select the first item in the data list after it is populated.
Any ideas
Thanks
:cool:
email me
What do you wish me to email you?
He is wasting your time.Quote:
Originally posted by Howard7890
What do you wish me to email you?
Can you use a MsFlexGrid rather than a DataGrid?
Does WattsTech have any friends?
No, I could ahve had but since you do not want me I will leave this thread.
He is posted crap throughout all the forums. Mods will get him soon...;)Quote:
Originally posted by ralph
Does WattsTech have any friends?
Ok, here's how to programatically select (highlight) the first item in datalist:
DataList1.SetFocus
SendKeys "{up}", True
To display the selection:
Text1.Text = DataList1.BoundText
Doesn't dbgrid have a selected property? or similar?
VB Code:
lstsummat.itemdata(0).selected=true
(just wondering)
Vince