Aug 27, 2001 #1 Cwolf Technical User Sep 16, 2002 1 US How do I set the focus on a item of a listbox?? For example I have a command button and a listbox with 5 items.How doe I select the second item if I pres the button Plaese help me
How do I set the focus on a item of a listbox?? For example I have a command button and a listbox with 5 items.How doe I select the second item if I pres the button Plaese help me
Aug 27, 2001 #2 sunaj Technical User Feb 13, 2001 1,474 DK list1.selected(2) = true Sunaj Upvote 0 Downvote
Aug 27, 2001 #3 ALSayegh Programmer Mar 27, 2001 25 KW You can do it like this way List1.ListIndex = item data (number) If your list item data started from 0 to 4 then List1.ListIndex = 1 I test it and it’s worked Upvote 0 Downvote
You can do it like this way List1.ListIndex = item data (number) If your list item data started from 0 to 4 then List1.ListIndex = 1 I test it and it’s worked