Two questions: can somebody help?
First. A dialog is created with parent 0 (desktop) and
Style = %WS_SYSMENU Or _
%WS_MINIMIZEBOX Or _
%DS_SETFOREGROUND Or _
%WS_CAPTION
--and displayed with ShowModal.
A couple of further dialogs are added with the above one as parent, and shown as modeless.
When the parent is dragged, the other two don't move along: only the parent dialog moves. Why is this?
Second: is there a way to ensure that an application developed with a (say) 800 x 600 screen will display correctly on another PC with some other setting?
First. A dialog is created with parent 0 (desktop) and
Style = %WS_SYSMENU Or _
%WS_MINIMIZEBOX Or _
%DS_SETFOREGROUND Or _
%WS_CAPTION
--and displayed with ShowModal.
A couple of further dialogs are added with the above one as parent, and shown as modeless.
When the parent is dragged, the other two don't move along: only the parent dialog moves. Why is this?
Second: is there a way to ensure that an application developed with a (say) 800 x 600 screen will display correctly on another PC with some other setting?
Comment