MessageBoxIcon's in my own form

  • Thread starter Thread starter Robert Misiak
  • Start date Start date
R

Robert Misiak

Hi-

Is it possible to display a MessageBoxIcon (namely the Question icon) in my
own form?

Thanks,
Robert
 
Yep, use SystemIcons.Question -- you can call ToBitmap() to get a Bitmap out
of it, then draw that on your form.
 
Back
Top