Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default dialog showing time

hi,

I'm trying to show on a message dialogbox with the time is taking for the
macro to run. Or some kind of message that will let the user know that the
macro still running... Sometimes, the users get crazy and start clicking
everything like if the computer is not responding when actually the macro is
running.

I appreciate your help.
--
Thank you...
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default dialog showing time

Check out this link on progress bars
http://www.andypope.info/vba/pmeter.htm
http://www.cpearson.com/Excel/Progress.htm

OR use Excel status bar

Application.DisplayStatusBar =true
Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False


If this post helps click Yes
---------------
Jacob Skaria


"EXCELMACROS" wrote:

hi,

I'm trying to show on a message dialogbox with the time is taking for the
macro to run. Or some kind of message that will let the user know that the
macro still running... Sometimes, the users get crazy and start clicking
everything like if the computer is not responding when actually the macro is
running.

I appreciate your help.
--
Thank you...

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default dialog showing time

Thank you i'm going to use the screen option update.
--
Thank you...


"Jacob Skaria" wrote:

Check out this link on progress bars
http://www.andypope.info/vba/pmeter.htm
http://www.cpearson.com/Excel/Progress.htm

OR use Excel status bar

Application.DisplayStatusBar =true
Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress"
Application.ScreenUpdating = False

'your code

Application.ScreenUpdating = True
Application.Cursor = xldefault
Application.StatusBar = False


If this post helps click Yes
---------------
Jacob Skaria


"EXCELMACROS" wrote:

hi,

I'm trying to show on a message dialogbox with the time is taking for the
macro to run. Or some kind of message that will let the user know that the
macro still running... Sometimes, the users get crazy and start clicking
everything like if the computer is not responding when actually the macro is
running.

I appreciate your help.
--
Thank you...

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
run-time error dialog Albert Excel Programming 1 February 9th 09 05:10 PM
run-time error Dialog Albert Excel Programming 0 February 9th 09 04:34 PM
URGENT: Office Add-Ins not showing in AddProject Dialog! Serg[_2_] Excel Programming 0 March 2nd 07 11:39 PM
Delete worksheet - dialog box showing Rick A[_2_] Excel Programming 1 May 24th 06 04:21 PM
Showing Time Gonçalo Ricardo[_2_] Excel Programming 1 November 4th 04 12:16 PM


All times are GMT +1. The time now is 05:09 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"