Jun 10, 2003 #1 erixire Technical User Jun 4, 2002 72 CA Hi, Is it possible to automatically scroll down the scrollbar as I add new items to a listbox? Thanks
Hi, Is it possible to automatically scroll down the scrollbar as I add new items to a listbox? Thanks
Aug 12, 2003 2 Thread starter #2 erixire Technical User Jun 4, 2002 72 CA I found a way finally: 'example: the listbox name is lstInfo lstInfo.TopIndex = lstInfo.Items.Count - 1 Hope this will help someone else. Upvote 0 Downvote
I found a way finally: 'example: the listbox name is lstInfo lstInfo.TopIndex = lstInfo.Items.Count - 1 Hope this will help someone else.
Sep 15, 2004 #3 barryna Programmer Feb 15, 2002 111 US It did. Thanks. Star for you. Upvote 0 Downvote
May 10, 2005 #4 a98dsu98sad8sua Technical User Apr 5, 2005 70 CA Great example post. Helped me too, another star. Upvote 0 Downvote
May 10, 2005 1 #5 bclt Programmer Mar 13, 2005 363 GR Also: ListBox1.SelectedIndex = ListBox1.Items.Count - 1 -bclt Upvote 0 Downvote