View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Claus Højlund[_2_] Claus Højlund[_2_] is offline
external usenet poster
 
Posts: 13
Default A message without the box?

Hi JMB
The code works fine. The message is not that big, so I think a lot of my
students would miss it. But thanks a lot for your proposal.
CLaus

"JMB" wrote:

You could put messages into the status bar w/o interrupting code execution
Application.StatusBar = "Sit back and relax"

To reset it when your done:
Application.StatusBar = False


"Claus Højlund" wrote:

Is it possible to have a MsgBox without OK or cancel, simply telling what is
going on? I want to use it with a macro that takes a while, so for the user
it would be nice to know that everything is ok and the machine is working
hard and so on. I can't find such a VBA command. Can anyone help?