PDA

View Full Version : Application.StatusBar errors



next
12-31-2009, 11:54 AM
I'm using a status bar to display progress in my fiel upload loop, but get an "Invalid use of property" error :dunno .
Here's how i use it:
Sub tesing()

Application.StatusBar "please wait"

End Sub


I recall using something like this just a few days ago and it was working just fine.
What am i missing here?

tpoynton
12-31-2009, 12:37 PM
Sub tesing()

Application.StatusBar = "please wait"

End Sub

next
12-31-2009, 01:42 PM
Thanks.