ControlTipText

Kent Petty

New Member
Joined
Jan 3, 2005
Messages
19
Hi all,

Is there a way to make ControlTipText to display on more than one line? I'd like to be able to provide more information than will display on a single line across the screen. I tried to set it in an initialize as follows, but it didn't work. It displayed empty boxes instead of inserting carriage returns and linefeeds:

Private Sub UserForm_Initialize()
ControlTipText = "This is a test" & vbCrLf & "of multiple lines" & vbCrLf _
& "within a ControlTipText"
End Sub

Any ideas?

Thanks,

Kent in Alaska
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Which control do you actually want the ControlTipText to appear over?

I'm not sure the code you posted will work for what you want.
 
Upvote 0
Oops....sorry. I'd either assign it to a label or a textbox. I guess the code should have been something like this:

Private Sub UserForm_Initialize()
Label1.ControlTipText = "This is a test" & vbCrLf & "of multiple lines" & vbCrLf & "within a ControlTipText"
End Sub

Is there a way?

Thanks,

Kent in Alaska
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,443
Members
448,898
Latest member
drewmorgan128

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top