Regarding Status bar Text

cnuhima

Registered User.
Local time
Today, 15:33
Joined
Jun 19, 2008
Messages
72
Hi guys,

when the user is using the application i want to display the hints and notes in the status bar..or when the mouse points in that particular box..

Please help me out..How can i do that..


With Regards,
HimaBindu.B
 
Hi guys,

when the user is using the application i want to display the hints and notes in the status bar..or when the mouse points in that particular box..

Please help me out..How can i do that..


With Regards,
HimaBindu.B

You can use the GotFocus Event of any Field to Update the Caption of the Form, and the LostFocus Event of that Field to clear the Caption of the Form.
 
Also, every control has a STATUS BAR TEXT property that you can set either at design time or at run time.

And if you use the Control Tip Text property you can set the text to those little baloons that popup when you put your mouse over a control.
 
hi ,

Thank you very Much..

Please tell me how to set the status bar text to dynamic..I am getting them in the design view..


Thank you very much..

With Regards,
HimaBindu
 
hi ,

Thank you very Much..

Please tell me how to set the status bar text to dynamic..I am getting them in the design view..


Thank you very much..

With Regards,
HimaBindu

The status bar setting is a property of any field, and can be set or cleared using VB in the events described above.
 
Well, in whatever event you want to use (not sure which would fit for your stuff, but you can play with it) you would use:

Me.YourControlNameHere.StatusBarText = "Whatever you want"
 
Consider the fact that if you turn a status on when a field gets focus, you might want to turn it off when that same field loses focus as well.
 
sorry guys..I am not able to get the status bar text..But when i tried in the similar way i got the control tip text..

Please help me out..



With Regards,
HimaBindu
 
Hi guys,..

I am trying to give that in a subform..is this the problem..


With regards,
HimaBindu.B
 
Hi guys,..

I am trying to give that in a subform..is this the problem..


With regards,
HimaBindu.B

Well, considering you say you tried something and it didn't work and you want to know why - I would remind you that we are not mind readers. We do not see what you see. So, you must describe FULLY what you tried, what code you tried, etc. so that we can look and see if we spot a problem. But just telling us you had a problem is about as useful as telling us that there will be weather today.
 
Hi,

I tried this code:

Me.YourControlNameHere.StatusBarText = "Whatever you want"

but i did not get the text in the status bar..

But when i tried

me.yourcontrolNameHere.controltiptext="Whatever you want"

It worked out..

Thank you very much...


With Regards,
HimaBindu.B
 
Hi,

I tried this code:

Me.YourControlNameHere.StatusBarText = "Whatever you want"

but i did not get the text in the status bar..

But when i tried

me.yourcontrolNameHere.controltiptext="Whatever you want"

It worked out..

Thank you very much...


With Regards,
HimaBindu.B

The status bar text will not change when the mouse is over it, it will only change when the cursor is in the control.
 

Users who are viewing this thread

Back
Top Bottom