Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

ToolTip delay & autopopup

0 views
Skip to first unread message

Christian Buhtz

unread,
May 26, 2009, 1:23:33 PM5/26/09
to
Ich mᅵchte gerne das System (zB WinXP) fragen, nach wievielen
Millisekunden ein ToolTip (sofern einer gegeben) angezeigt wird und nach
welcher Zeit er wieder verschwindet.

Kann ich das machen?
--
publictimestamp.org/ptb/PTB-6253 tiger 2009-05-26 15:00:06
7C774037D5A5556CC291F04D022FB7834B5B9B88115B9044

Martin Richter [MVP]

unread,
May 27, 2009, 5:30:10 AM5/27/09
to
Hallo Christian!

> Ich mᅵchte gerne das System (zB WinXP) fragen, nach wievielen
> Millisekunden ein ToolTip (sofern einer gegeben) angezeigt wird und nach
> welcher Zeit er wieder verschwindet.
>
> Kann ich das machen?

Verwende demnᅵchst microsoft.public.de.vc!

Siehe TTM_SETDELAYTIME
http://msdn.microsoft.com/en-us/library/bb760404(VS.85).aspx

The default delay times are based on the double-click time. For the
default double-click time of 500 ms, the initial, autopop, and reshow
delay times are 500ms, 5000ms, and 100ms respectively. The following
code fragment uses the GetDoubleClickTime function to determine the
three delay times for any system.

Copy Code
initial = GetDoubleClickTime();
autopop = GetDoubleClickTime() * 10;
reshow = GetDoubleClickTime() / 5;

--
Martin Richter [MVP] WWJD http://blog.m-ri.de
"A well-written program is its own heaven; a poorly written
program is its own hell!" The Tao of Programming
FAQ: http://www.mpdvc.de Samples: http://www.codeproject.com

0 new messages