|
|
Title | Use a bitmap for an icon |
Keywords | bitmap, icon, image |
Categories | Graphics |
|
|
Load the picture into an ImageList control. Use its ExtractIcon method to load the icon into the form's Icon property.
|
|
Private Sub Form_Load()
Set Icon = ImageList1.ListImages(1).ExtractIcon
End Sub
|
|
|
|
|
|