VBA - Status Window?

  • Thread starter Thread starter jordanctc
  • Start date Start date
J

jordanctc

Didn't I read somewhere that you can create a status/progress window?

I know forms stop the VBA so what's the secret?

Jorda
 
A Message will pause the flow of the VBA code, but a form won't.
Just use the progressbar control (right-click the toolbox in the VBE and do
additional controls and add the progressbar control) on a form and set the
value.

RBS
 
You can have a modeless form from Excel 2000 onwards. Call the form like so:

MyForm.Show vbModeless

Then it won't stop the rest of your code.

Jeff
 

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