Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
how to minimize/maximize a dalog in Toolkit?
What about ProUIDialogHide ?
As alternative you can use ProMacroLoad("..."); ProMacroExecute(); And use a Mapkey to do the resize / minimize / maximize.
Second alternative would be Windows API call. So you can get the hwnd Windows handle and use it to send a minimize / maximize request. You can use the Spy++ / Spy++64 to get the send and respone events, to send it manually or use the ShowWindow() function.
https://msdn.microsoft.com/de-de/library/windows/desktop/ms633548(v=vs.85).aspx
There are lots of different ways to initialize the window handle.
Br,
Eike