How to hide the Form Icon?

  • Thread starter Thread starter Craig
  • Start date Start date
C

Craig

Is there a way to hide the icon in the title bar for a dialog. I have tried
setting Form.Icon to null and the default icon still appears.
 
* "Craig said:
Is there a way to hide the icon in the title bar for a dialog. I have tried
setting Form.Icon to null and the default icon still appears.

FormBorderStyle = FixedDialog
ShowInTaskBar = False
MinimizeBox = False
MaximizeBox = False
 
Back
Top