Thanks Roy for pointing this out.
Controls on a userform have the ControlTipText property which can be used to display messages
I heard of the property before but, was not aware of it's function. I tried it and it does work.
This will put the message box over the userform. However, I cannot use word wrap or line breaks to display muti-message-lines. I don't want a user to have to use the Ctrl+Enter to advance to the second line.
The link to the code I orignially used allows me to VbCrLf to break lines in multiples which it will auto adjust the box size to show them all.
If Not fTTL Then
CreateToolTipLabel CheckBox1, "My first line of text." & vbCrLf & "Mysecond line of text." & vbCrLf & "My third line of text. And I can add more if preferred."
End If
So, if I can figure out or someone else knows just how to get the tip box to display over the userform at all times, then I will be thrilled.
Thanks,
BDB
Bookmarks