Control Tip Alternative?

  • Thread starter Thread starter stewart
  • Start date Start date
S

stewart

I am crating a userform to evaluate employees. There are several
different areas that employees are rated on. Currently I have a label
with the criteria and a Control Tip that gives a definition of said
criteria. My problem is that some of the definitions are really long
and cannot be shortened. When the Control Tip pops up it shows just
one line all the way across the screen. Is there a way to format it
so it is on multiple lines. Or is there a better way to accomplish
this?
 
I am crating a userform to evaluate employees. There are several
different areas that employees are rated on. Currently I have a label
with the criteria and a Control Tip that gives a definition of said
criteria. My problem is that some of the definitions are really long
and cannot be shortened. When the Control Tip pops up it shows just
one line all the way across the screen. Is there a way to format it
so it is on multiple lines. Or is there a better way to accomplish
this?

Have you tried using a newline character in your tips?
 
Saved from a previous post.

How about just putting a label over the control and that control in a frame.

Then when you mouse over the frame, it'll hide the label. But when you mouse
over the control, you'll show the label.

Option Explicit
Private Sub CommandButton1_MouseMove(ByVal Button As Integer, _
ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Me.Label1.Visible = True
End Sub
Private Sub Frame1_MouseMove(ByVal Button As Integer, _
ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Me.Label1.Visible = False
End Sub
 

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

Back
Top