GeorgeBakoyannis
New member
- Local time
- Tomorrow, 00:22
- Joined
- Oct 9, 2010
- Messages
- 4
Hello,
I am creating forms instances in code, using.
Set frm = New Form_frmBase (http://allenbrowne.com/ser-35.html)
frm.Visible = True
Now frm is visible but code continues run.
The DoCmd.OpenForm xxx,,,,,acDialog pause execution of code but dot works this form instances.
When I use below "while wend" loop seems to use up a lot of processor time - the task manager shows access as using 99% of processor time.
Set frm = New Form_frmDialog
frm.Visible = True
While frm.Visible
DoEvents
Wend
Who to make a solution to combine "acDialog" & instances without using 99% of processor time;
Any idea for this;
Many thanks
George Bakoyannis
from Greece
P.S.
I work with MS ACCESS 2000
I am creating forms instances in code, using.
Set frm = New Form_frmBase (http://allenbrowne.com/ser-35.html)
frm.Visible = True
Now frm is visible but code continues run.
The DoCmd.OpenForm xxx,,,,,acDialog pause execution of code but dot works this form instances.
When I use below "while wend" loop seems to use up a lot of processor time - the task manager shows access as using 99% of processor time.
Set frm = New Form_frmDialog
frm.Visible = True
While frm.Visible
DoEvents
Wend
Who to make a solution to combine "acDialog" & instances without using 99% of processor time;
Any idea for this;
Many thanks
George Bakoyannis
from Greece
P.S.
I work with MS ACCESS 2000