ldb68 Posted November 23, 2012 Posted November 23, 2012 If you need to show at run time a selection inside a TUniList use something like: for I := 0 to list.Items.Count-1 do begin if list.Items)= 'my item' then begin list.ItemIndex:= i; list.Selected:= true; break; end; end; 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.