Hi
how can i put a key to restore the hidden application when user press it for example i hidden the application and i want to restore the application when i press the Ctrl+M+6
thanks for your help and sorry for my language.![]()
Professional Software Development Tools
Hi
how can i put a key to restore the hidden application when user press it for example i hidden the application and i want to restore the application when i press the Ctrl+M+6
thanks for your help and sorry for my language.![]()
Last edited by sara2006; 05-29-2006 at 04:50 AM.
Put this On Show
then this OnTimerCode:Page.StartTimer(100);
Code:if System.IsKeyDown(65) then Window.Restore(Application.GetWndHandle()) else if System.IsKeyDown(81) then Window.Hide(Application.GetWndHandle()); end end
When you press "A" the application restores and if you press "Q" then the application gets hidden
![]()
Allso look up Virtual Keys in the help file, for a list of keys that you might want to use.
allso you could use this on a seond timer, if you want to have different timers
thanks a lot Wonderboy![]()