I have put the icon in the form properties. How to remove this?
Printable View
I have put the icon in the form properties. How to remove this?
Few ways:
- select Icon property in the Properties windows and hit the Delete key
- change BorderStyle to 4 or 5
- use sample code below:
Code:Private Sub Form_Load()
Me.Icon = Nothing
End Sub