C
Chuck
Is there anyway to get a MessageBox to center in the parent form or in
the middle of a MDI parent? The .NET standard MessageBox is centered
on the screen area, not on the application.
Specifing the owner doesn't seem to work reliably in MDI applications
public static DialogResult Show(
IWin32Window owner,
string text
);
In 1.1 you had to use a WH_CALLWNDPROC hook and look for a
WM_INITDIALOG or write your own MessageBox routine
I hate it when you do MessageBox.Show() and the messagebox pops up in
the second display or in someother non-intutive location.
thanks,
the middle of a MDI parent? The .NET standard MessageBox is centered
on the screen area, not on the application.
Specifing the owner doesn't seem to work reliably in MDI applications
public static DialogResult Show(
IWin32Window owner,
string text
);
In 1.1 you had to use a WH_CALLWNDPROC hook and look for a
WM_INITDIALOG or write your own MessageBox routine
I hate it when you do MessageBox.Show() and the messagebox pops up in
the second display or in someother non-intutive location.
thanks,