public static DialogResult Show(string text)
{
MyCustomMessageBox mb = new MyCustomMessageBox();
mb.SetLabelText(text);
return gps.ShowDialog();
}
If you are writing application for PPC you maybe have noticed that all
dialog boxes are fullscreen. How to avoid this behaviour see:
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework/msg/f21cfae575d3f668
Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
c_xyTopa wrote:
> i want to make my own message box. which possibilities do i have and how
> should i proceed?