Timers on Forms

C

CS

I have a form that when open I would like to be able to run another form at
a predetermined time every morning. I can get it to call outside for data at
a specific time (from an oracle database, using the Call bas function) but
just can not get it to open a form and run certain commands from a different
form. I know I must just be missing something obvious. I am a hacker when it
comes to programming, books being my main source of information. Any help
would be greatly appreciated.
 
R

Rick Brandt

CS said:
I have a form that when open I would like to be able to run another
form at a predetermined time every morning. I can get it to call
outside for data at a specific time (from an oracle database, using
the Call bas function) but just can not get it to open a form and run
certain commands from a different form. I know I must just be missing
something obvious. I am a hacker when it comes to programming, books
being my main source of information. Any help would be greatly
appreciated.

Just have the form being opened run its own code. That is much simpler. If you
need that form to sometimes behave differently then use the OpenArgs feature to
control what happens.
 
Top