>A form that opens another form as a dialog form (DoCmd.OpenForm
>"MyForm",,,,,acDialog) has its status changed to "not visible" to transfer
[quoted text clipped - 3 lines]
> query for a list box on it - but cannot seem to find a way to re-query the
> list box
You could try putting something like this in the Activate event of the form:
Me.ListboxControlName.ReQuery
HTH;
Amy
JimP - 21 May 2007 19:44 GMT
I don't know if it is because it is a dialog form - but it never goes
through the activate event when control passes to it once it has been opened
>>A form that opens another form as a dialog form (DoCmd.OpenForm
>>"MyForm",,,,,acDialog) has its status changed to "not visible" to transfer
[quoted text clipped - 12 lines]
>
> Amy
Amy Blankenship - 22 May 2007 01:46 GMT
>I don't know if it is because it is a dialog form - but it never goes
>through the activate event when control passes to it once it has been
>opened
Sometimes it can take a bit of experimentation to find which event will fire
when you need it. Could you just close the form after getting its value and
then reopen it when you would have made it visible? This should require it.
-Amy