How to get to bottom of listbox when adding new msgs?

2006-07-19 Thread vfpmcp
Quick question: got a listbox that I'm using for messaging. I want to always show the last message, and thought DoScroll would work nicely, except that the listbox doesn't have a DoScroll method apparently! Suggestions? tia! --Michael ___

Re: How to get to bottom of listbox when adding new msgs?

2006-07-19 Thread Matthew Jarvis
[EMAIL PROTECTED] wrote: Quick question: got a listbox that I'm using for messaging. I want to always show the last message, and thought DoScroll would work nicely, except that the listbox doesn't have a DoScroll method apparently! Suggestions? tia! --Michael Set the ListIndex property

Re: How to get to bottom of listbox when adding new msgs?

2006-07-19 Thread Jack Skelley
Michael: How about: thisform.listbox1.listindex = thisform.listbox1.listcount thisform.listbox1.refresh() Regards, Jack Skelley [EMAIL PROTECTED] wrote: Quick question: got a listbox that I'm using for messaging. I want to always show the last message, and thought DoScroll would work nicely,