Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello all
how could i do something like this without stop the macro run?

i have a form that when i click ok buttom(on userform)....begins to run a
macro...and i want to show a wating form

so what i do is this:

unload userform

waiting_form.show

'here i put all the code 'but only get here when i close the waiting_form

unload waiting_form

msgbox("Finish.")


the problem is when i do waiting_form.show stops the macro and don´t run the
code bellow until i close it

thanks in advance
Miguel
 
Roedd said:
Hello all
how could i do something like this without stop the macro run?
waiting_form.show

waiting_form.show vbModeless 'doesn't work in Excel97 - post back if you are
using Office97

--
Rob

http://www.asta51.dsl.pipex.com/webcam/

This message is copyright Robert Bruce and intended
for distribution only via NNTP.
Dissemination via third party Web forums with the
exception of Google Groups and Microsoft Communities
is strictly prohibited and may result in legal action.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top