G Guest Mar 17, 2005 #1 i want to make my own message box. which possibilities do i have and how should i proceed?
S Sergey Bogdanov Mar 17, 2005 #2 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...amework.compactframework/msg/f21cfae575d3f668 Best regards, Sergey Bogdanov http://www.sergeybogdanov.com
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...amework.compactframework/msg/f21cfae575d3f668 Best regards, Sergey Bogdanov http://www.sergeybogdanov.com