Title bar icon

  • Thread starter Thread starter mailme.faisal
  • Start date Start date
M

mailme.faisal

I want to remove title bar icon of a window.
The window should be resizable & it should have close (cross) button at
upper right corner.
I m using VB 6.
Any Help. Thanks in advance. & HOPE FOR FEEDBACK
 
Try this first in the Form Load:

Form1.Icon = LoadPicture()

Then I'd create an icon that matches the background and do this (just
make it real small or whitish - as long as it's recognized as a picture
resource by the API you're ok)

Form1.Icon = LoadPicture("c:\myblankIcon.bmp")
 
Back
Top