How to maximize a child window of a non-PB program?
Posted: Wed Dec 05, 2018 10:42 pm
Hi all,
The program i try to maximize is not from PB, its a program that already started on windows when i execute my software.
How to maximize a child window of that program?
I can however maximize all windows with:
Problem is that the child window doesnt maximize with the above command.
I think i need this:
https://docs.microsoft.com/en-us/window ... dwindowexa
I have read somewhere that you need to search or loop through the child windows, but i dont know how to translate that to PB.
Any help is very appreciated!
The program i try to maximize is not from PB, its a program that already started on windows when i execute my software.
How to maximize a child window of that program?
I can however maximize all windows with:
Code: Select all
SendMessage_(FindWindow_("Shell_TrayWnd",""), #WM_COMMAND, #MIN_ALL_UNDO, 0)
I think i need this:
https://docs.microsoft.com/en-us/window ... dwindowexa
I have read somewhere that you need to search or loop through the child windows, but i dont know how to translate that to PB.
Any help is very appreciated!