I have a form which I load when I have some processing taking place which may take some time. This form has a label on it with the caption "Processing taking place please wait." The form is called "PleaseWait"
In VBA I have
DoCmd.OpenForm "PleaseWait"
Some code which make take a while to process.
DoCmd.Close acForm, "PleaseWait"
The form pops up as expected but the form is blank.
I have tried changing the caption in the on load
ie
Me.label.caption = "Processing taking place please wait."
I've tried putting an unbound text box in there as well
Me.textbox = " "Processing taking place please wait."
I've also tried
Me.textbox.vale = " "Processing taking place please wait."
Each time I get a blank form
And yes each control is visible
Any ideas what could be happening?
In VBA I have
DoCmd.OpenForm "PleaseWait"
Some code which make take a while to process.
DoCmd.Close acForm, "PleaseWait"
The form pops up as expected but the form is blank.
I have tried changing the caption in the on load
ie
Me.label.caption = "Processing taking place please wait."
I've tried putting an unbound text box in there as well
Me.textbox = " "Processing taking place please wait."
I've also tried
Me.textbox.vale = " "Processing taking place please wait."
Each time I get a blank form
And yes each control is visible
Any ideas what could be happening?