Anyone know how I can display a hidden or invisible form of a program in memory from another program ?
Printable View
Anyone know how I can display a hidden or invisible form of a program in memory from another program ?
First if you know that form caption or we call it window title, then you need to used the FindWindow API to get that window handle value, then you ca can either use the ShowWindow or SetWindowPos API funtion to unhide or make it visible.
Will this help? :)