Kann ich das machen?
--
publictimestamp.org/ptb/PTB-6253 tiger 2009-05-26 15:00:06
7C774037D5A5556CC291F04D022FB7834B5B9B88115B9044
> 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