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
Printable View
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
huh? Do you mean...
VB Code:
Private Sub Form_Load() Me.BorderStyle = 0 Me.ControlBox = False Me.Caption = "" End Sub
I don't understand what you're asking?
That is the code, I just need ad WS_THICKFRAME = &H40000 to complete.
Thanks Hack!!!
Jefferson