Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: custom message box

6 views
Skip to first unread message

Sergey Bogdanov

unread,
Mar 17, 2005, 8:27:41 AM3/17/05
to
Implement it as usual form and provide static method for this form.
Something like this:

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?

0 new messages