PDA

Click to See Complete Forum and Search --> : Changing Window Style


JeffSM
Feb 8th, 2002, 04:13 PM
Some one knows how change a windows style to get the same effect as BorderStyle=0; ControlBox=False and Caption="" in vb form?

Thanks in advance.

Jefferson Motta

The Hobo
Feb 8th, 2002, 06:30 PM
huh? Do you mean...


Private Sub Form_Load()
Me.BorderStyle = 0
Me.ControlBox = False
Me.Caption = ""
End Sub


I don't understand what you're asking?

JeffSM
Feb 15th, 2002, 10:35 AM
That is the code, I just need ad WS_THICKFRAME = &H40000 to complete.

Thanks Hack!!!


Jefferson