View Single Post
  #1  
Old February 25th, 2010, 03:25 AM posted to microsoft.public.access.forms
Benjamins via AccessMonster.com
external usenet poster
 
Posts: 68
Default Runing 2 things at the same time

Hi,

I using Access 2003

I have a module. The module will open a form when it was executed and will
close the form once finishes.

The from has a label to show the user the system is still processing by using
the form timer. The form works fine working on itself.

Once i use the module to run the code, the form loaded but does not show
anything and close once finished

Below is the example of Code

Module:
Public function StartModule()
Docmd.OpenFrom "ProcessBar"
'Code that is need for the module
...
...
...
Docmd.Close acFrom "ProcessBar"
End Function

How do i make the form work.

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/201002/1