systemicons

  • Thread starter Thread starter todd
  • Start date Start date
T

todd

I'm trying to make my own messagebox (for custom error
dialogs, etc), but having a little trouble with the icons.
I use the systemicons, but they're not anti-aliased and
look horrible. How can I make the pic quality like that of
the regular messagebox?

thanks,
todd
 
Don't use SystemIcons.ToBitmap.
Instead use DrawIcon on the Graphics Object.

Private Sub MyMessageBoxForm_Paint(...)...
e.Graphics.DrawIcon(SystemIcons.Information, 16, 24)
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top