View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rob van Gelder[_4_] Rob van Gelder[_4_] is offline
external usenet poster
 
Posts: 1,236
Default Display a message whil eprocessing

It depends on how you want this message presented.
A lot of people are satisfied with the Status Bar being updated.

eg.
Application.StatusBar = "Please wait....saving in progress..."

Then at the end of processing
Application.StatusBar = False


--
Rob van Gelder - http://www.vangelder.co.nz/excel


"broogle" wrote in message
oups.com...
Hi, I am trying to display a message while processing, such as " Please
wait....saving in progress...". Is it possible ? Anybody knows the
code? Thanks