Hello,
I have a small form which is used to show a "Please Wait" message before opening a report.
In the FAQ's on this site, I used the code to place a scrolling textbar (marquee) on this form using the Timer function.
When the form is opened from the Access DB Window, I can see the marquee.
When the form is opened using a DoCmd.OpenForm, the marquee is not shown.
What am I doing wrong here ??
The complete Docmd.Openform line is :
DoCmd.OpenForm "frm_pleasewait", acNormal, "", "", acReadOnly, acWindowNormal 'Opens my pleasewait form
DoCmd.RepaintObject acForm, "frm_pleasewait"
DoCmd.OpenReport "stock per productrange", acViewPreview, , VarCriteria 'Opens my report
DoCmd.Close acForm, "frm_pleasewait" 'Once report is open, please wait message dissappears
DoCmd.Close acForm, "popup stock per productrange" 'this is a form with a combobox to select the product range to print
Could anyone check this out ??
Regards,
PdtIt
I have a small form which is used to show a "Please Wait" message before opening a report.
In the FAQ's on this site, I used the code to place a scrolling textbar (marquee) on this form using the Timer function.
When the form is opened from the Access DB Window, I can see the marquee.
When the form is opened using a DoCmd.OpenForm, the marquee is not shown.
What am I doing wrong here ??
The complete Docmd.Openform line is :
DoCmd.OpenForm "frm_pleasewait", acNormal, "", "", acReadOnly, acWindowNormal 'Opens my pleasewait form
DoCmd.RepaintObject acForm, "frm_pleasewait"
DoCmd.OpenReport "stock per productrange", acViewPreview, , VarCriteria 'Opens my report
DoCmd.Close acForm, "frm_pleasewait" 'Once report is open, please wait message dissappears
DoCmd.Close acForm, "popup stock per productrange" 'this is a form with a combobox to select the product range to print
Could anyone check this out ??
Regards,
PdtIt