ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Dynamic Control Tip Text (https://www.excelbanter.com/excel-discussion-misc-queries/112999-dynamic-control-tip-text.html)

BillyJ

Dynamic Control Tip Text
 
Is there anyway to change what is in the control tip text depending on what
record I'm looking at in a form? For instance, I have a form that lists the
names of a number of people spit out from a query. I would want their phone
number or other related information to show up in one of those little "hover
boxes", which would obviously change from record to record.

Any thoughts?

Thanks very much in advance.

Dave Peterson

Dynamic Control Tip Text
 
Is this a userform that you've developed in the VBE?

If yes, then yep.

I don't know how you'd know what to base the change on, but this worked ok for
me--based on a button click and a random number.

Option Explicit
Private Sub CommandButton1_Click()
Dim SomeVar As Double
SomeVar = Rnd()
If SomeVar 0.5 Then
Me.Label1.ControlTipText = "hi"
Else
Me.Label1.ControlTipText = "bye"
End If
End Sub

BillyJ wrote:

Is there anyway to change what is in the control tip text depending on what
record I'm looking at in a form? For instance, I have a form that lists the
names of a number of people spit out from a query. I would want their phone
number or other related information to show up in one of those little "hover
boxes", which would obviously change from record to record.

Any thoughts?

Thanks very much in advance.


--

Dave Peterson


All times are GMT +1. The time now is 03:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com