Show a window again that is minimized in taskbar?

BlitzMax Forums/MaxGUI Module/Show a window again that is minimized in taskbar?

Grisu(Posted 2007) [#1]
Hi folks!

Have posted this bug report a long time ago:
http://www.blitzbasic.com/Community/posts.php?topic=62957

The problem is that the filerequester function minimizes the main window of my app to the task bar each time. [Win32]

I'm looking for an ugly workaround so I can "wake it up" again to where it was. Normally done by a click on the taskbar icon. Is there an API call that does that?

Tiny example code would be great.

Grisu


Kev(Posted 2007) [#2]
Try the WinApi ShowWindow(QueryGadget(your_window, QUERY_HWND ),SW_RESTORE) that should do it.

kev


Grisu(Posted 2007) [#3]
Thanks, will try it.