Status Bar

L

Lisa

hello everybody, I would like to know if it is possible to make the status
bar of a project show some random (scrolling) text. I use this on all my
excel
sheets and I would love to be able to do the same with access.

Thanks
--
Lisa
Save the Dogs Onlus - www.savethedogs.eu

Aiutaci a costruire il nuovo rifugio, dona il 5 per mille a Save The Dogs:
97394230151
 
A

Arvin Meyer [MVP]

Lisa said:
hello everybody, I would like to know if it is possible to make the status
bar of a project show some random (scrolling) text. I use this on all my
excel
sheets and I would love to be able to do the same with access.

There is a property called Status Bar Text. Open the form in Design View,
open the form's property sheet. Go to the Other tab and enter your text in
the control's property. Alternatively, you can use VBA code:

ControlName.StatusBarText = "Look at this"
 
Top