control tip text

J

JohnE

I would like to programmatically add control tip text as
instructions for various controls rather then use the
properties sheet. But, the control tip text can be one
long line.
Does anyone know if and how you can wordwrap the text in
the popup control tip when done in code?
Any thoughts are appreciated.
*** John
 
G

Gina

You can make the control tip as many lines as you want just type the first
line, hold down the Control button (on your keyboard) and press Enter (on
your keyboard) and type in line number 2 and so on...

Hope that helps...
 
F

Fredg

John,
Gina told you how to do it in the property sheet.
You can also use code.
In a Form or Control event:
[ControlName].ControlTipText = "This is line 1." & vbCrLf & "this is Line
2."
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Control Tip Text 6
using the control tip 8
control tool tip 2
Control Tip Text 1
Control Tip Text Event 2
Wordwrap in browser control 4
Stop ribbon item tool tip text from wrapping? 2
Control Tip 4

Top