Mar 24, 2004 #1 sqlpro Programmer Dec 30, 2003 297 NZ hi friends is there any way to know the _screen is minimized bcoz i need to add some when it is minimized. Thanks cheers
hi friends is there any way to know the _screen is minimized bcoz i need to add some when it is minimized. Thanks cheers
Mar 24, 2004 #2 baltman Technical User Mar 5, 2002 1,578 US _screen.WindowState=0|1|2 ?_screen.WindowState 0=normal 1=minimized 2=maximized Upvote 0 Downvote
Mar 24, 2004 #3 craigsboyd IS-IT--Management Nov 9, 2002 2,839 US Use the information in FAQ: How can I add .Resize() and .Moved() methods to _SCREEN? faq184-4374 ...to hook the resize event and then you can check if _screen.windowstate = 1 to see if it is minimized. craig1442@mchsi.com"Whom computers would destroy, they must first drive mad." - Anon Upvote 0 Downvote
Use the information in FAQ: How can I add .Resize() and .Moved() methods to _SCREEN? faq184-4374 ...to hook the resize event and then you can check if _screen.windowstate = 1 to see if it is minimized. craig1442@mchsi.com"Whom computers would destroy, they must first drive mad." - Anon
Mar 24, 2004 Thread starter #4 sqlpro Programmer Dec 30, 2003 297 NZ Thanks Craig. i'll check that thread cheers Upvote 0 Downvote