msgbox issue

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I could imagine only one solution.
Write your own message box!
And in all place use
MyCoolMessageBox.Show(...)
instead of
MessageBox.Show(...)
 
hi,
I'n my windows application I used colours for giving a good look to forms
according to the requirment . Now the issue is I used Msgbox in few places
they are appearing in TIPICALE WINDOWS FORMAT i mean that GRAY colour .I
want them to be colour full can it b possible??? or can v used image on that
Msgbox ??
kindly help me out.

thank in advance
regards
noor
 
hi,
I'n my windows application I used colours for giving a good look to forms
according to the requirment . Now the issue is I used Msgbox in few places
they are appearing in TIPICALE WINDOWS FORMAT i mean that GRAY colour .I
want them to be colour full can it b possible??? or can v used image on that
Msgbox ??
kindly help me out.

thank in advance
regards
noor

Why not design the application as usual and let the user set the
appearance as they wish, instaed of making them see the application
the way your customer wants it?

I know. You're designing it the way they want it. The comment is not
aimed at you, but your customer.

I wonder why people make those kinds of requirements?

Otis Mukinfus
http://www.otismukinfus.com
http://www.tomchilders.com
 
noor,

MessageBox uses the old windows message box and you have no control on its
looks and feel. If you want something different you need to create your own
form to use as a message box.
 
Back
Top