Tooltip request

Post Reply
Patrizio
Posts: 90
Joined: Wed Nov 07, 2007 8:56 am
Location: Italy
Contact:

Tooltip request

Post by Patrizio »

In Window.prg, row 3083:

Code: Select all

SendMessage( hWnd, TTM_SETMAXTIPWIDTH, 0, 300 )
Is it possibile to make customizable the value 300 ?


And, btw, i've found this: http://msdn.microsoft.com/en-us/library/bb760404.aspx.

For tooltip with very long text the delay time of 5000 ms (the autopop value) it's too low.

Is it possibile to implement code like this?

Code: Select all

SendMessage(hwnd, TTM_SETDELAYTIME, TTDT_INITIAL, nDelayTimeInitial)
SendMessage(hwnd, TTM_SETDELAYTIME, TTDT_AUTOPOP, nDelayTimeAutoPop)
SendMessage(hwnd, TTM_SETDELAYTIME, TTDT_RESHOW , nDelayTimeReshow )
 
User avatar
gkuhnert
Posts: 274
Joined: Fri Apr 04, 2008 1:25 pm
Location: Aachen - Germany // Kerkrade - Netherlands
Contact:

Re: Tooltip request

Post by gkuhnert »

Hi,

Anything new on this? I'd also need tooltips to be showed for a longer time. It would be very nice if I could decide in my source code how long it would be displayed.

Thanks in advance!
Best Regards,

Gilbert Kuhnert
CTO Software GmbH
http://www.ctosoftware.de
Post Reply