Any way to force a window that you've captured into yours (as a child) to reside behind another object? I don't want the window to be inside of a picturebox, just the form, but behind anything else that's on the form.
Thanks in advance :)
Printable View
Any way to force a window that you've captured into yours (as a child) to reside behind another object? I don't want the window to be inside of a picturebox, just the form, but behind anything else that's on the form.
Thanks in advance :)
It's either set window placement or setwindow pos, one of them's got an insert after parameter, set this to the hwnd of the window to insert it behind.
If you setwindowpos with the handle to insert behind and position it correctly, it hides it. Works great.
Thanks,
Wade