Combo box - Listin Partial Data

K

Kahuna

Hi Folks, got a strange one here!

I have a combo box that works great on my dev PC but on several clients
machines 'occasionally lists only partial data. After several closing and
opening of the form the combo shows all records again.

I recall someplace in the murky dregs I sometimes (laughingly) call my
memory, I recall some discussion of this, but Googling resulted in nothing
applicable. Seems like it may be a timing issue on form opening and combo
refreshing or something?

Anyone got a resource on this one?

TIA
 
M

Marshall Barton

Kahuna said:
I have a combo box that works great on my dev PC but on several clients
machines 'occasionally lists only partial data. After several closing and
opening of the form the combo shows all records again.

I recall someplace in the murky dregs I sometimes (laughingly) call my
memory, I recall some discussion of this, but Googling resulted in nothing
applicable. Seems like it may be a timing issue on form opening and combo
refreshing or something?


Typically, this is dealt with by using:
xx = Me.combo.ListCount
 
Top