ListIndex gets updated when you select something from that list? In that
case, the solution is indeed very simple, like you showed. I thought
ListIndex didn't get updated. Weird that it gets updated, but the event
doesn't fire.... Anyway, I'm glad you got it working.
Maarten
On 06/07/06, Avery, Mike <[EMAIL PROTECTED]> wrote:
Thanks Maarten de Vries for your response. I consider it a bug and will
try
to send a report.
In the meantime I developed a work around by putting this code in the
Textchanged event for the combo box. It seems to work and it's not too
onerous but I didn't think of it right away.
dim ans as Integer
if me.listindex > -1 then
if me.text = me.list(me.listindex) then
ans =msgbox ("[From Textchanged] The value selected from the list
is:"
+ me.Text)
end if
end if
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>