[RESOLVED] Is it possible tool tip text in two line
Hi all
My next question that
always tool tip text occur in one line but how it is possible that it occur in two line without lenghty code
this i try but not working
Quote:
For Updating Any Student Double click On It +chr(13)+Select The Colum For Changing Section
i write above as a grid tool tip text :wave:
thanks
Re: Is it possible tool tip text in two line
use vbCRLF not chr(13). chr(13) is only half of what you need. You are applying the tooltip text using code, No?
Re: Is it possible tool tip text in two line
ye the above is correct, you have two ways make your own control, or use some of the API calls in both cases you still use the same amount of code, anyway of the top of my head I have no code at hand but go http://www.pscode.com/vb and do a serach I am sure you find what you need.
Re: Is it possible tool tip text in two line
dreamvb,
Possibility you are in the wrong thread?????
Re: Is it possible tool tip text in two line
randem
tried to use your suggestion;
VB Code:
Command1.ToolTipText = "abc" & vbCrLf & "efg"
the result is still "abcdefg" on one line... why?
Re: Is it possible tool tip text in two line
Code:
& vbCrLf & Not showing Tool Tip Text In New Line why
It occuring like this style
VB Code:
Please duuble clilck for update! & vbCrLf & Single for check
Re: Is it possible tool tip text in two line
It is not as easy as youw ould think it is. You need to use API to get it done. Take alook at his
http://www.vb-helper.com/howto_multi_line_tooltip.html
Re: Is it possible tool tip text in two line
chill Shakti.. check Shuja Ali's reply,
the answer to your question is there.
Re: Is it possible tool tip text in two line
Re: Is it possible tool tip text in two line