I have set the ControlTipText for a specific control on a form.
How can I get it, so that when a user hovers the mouse over the control, the Tip pops up, but wraped or have a Carriage Return (preferable) in it?
e.g.
This is what I have:
This is what I want:
Is there any way to do it in code?
Also, where would I put the code? - I've looked into the VB code, and the only options I have for the text box is:
AfterUpdate
BeforeUpdate
Change
Click
DblClick
Dirty
Enter
Exit
GotFocus
KeyDown
KeyPress
KeyUp
LostFocus
MouseDown
MouseMove
MouseUp
Undo
There isn't one for MouseOver - Any suggestions would be grealy appreciated
Aubs
How can I get it, so that when a user hovers the mouse over the control, the Tip pops up, but wraped or have a Carriage Return (preferable) in it?
e.g.
This is what I have:
Code:
------------------------------------------------------------------
Enter the details you require. Separate each detail by a return
------------------------------------------------------------------
This is what I want:
Code:
---------------------------------
Enter the details you require.
Separate each detail by a return
---------------------------------
Is there any way to do it in code?
Also, where would I put the code? - I've looked into the VB code, and the only options I have for the text box is:
AfterUpdate
BeforeUpdate
Change
Click
DblClick
Dirty
Enter
Exit
GotFocus
KeyDown
KeyPress
KeyUp
LostFocus
MouseDown
MouseMove
MouseUp
Undo
There isn't one for MouseOver - Any suggestions would be grealy appreciated
Aubs