View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Kieran[_46_] Kieran[_46_] is offline
external usenet poster
 
Posts: 1
Default On Screen Loop Counter

The Application.DisplayStatusBar mtehod displays a message at the bas
of the screen.



Try these examples


sub ShowMessage()
Application.DisplayStatusBar = True
Application.DisplayStatusBar = "Hello world"
end Sub

Sub HideMessage
Application.DisplayStatusBar = False
end su

--
Message posted from http://www.ExcelForum.com