Прозрачность формы на Visual Basic 6.0
Люди, кто ни будь, помогите сделать прозрачность формы так, что бы всё что было на форме было видно, а саму форму нет... X)-
Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hwnd As Long, ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
Const LWA_COLORKEY = &H1
Const LWA_ALPHA = &H2
Const GWL_EXSTYLE = (-20)
Const WS_EX_LAYERED = &H80000
Private Sub Form_Load()
SetWindowLongA Me.hwnd, GWL_EXSTYLE, WS_EX_LAYERED
SetLayeredWindowAttributes Me.hwnd, vbWhite, 0, LWA_COLORKEY
End Sub
Private Sub Label1_DblClick()
End
End Sub
Но после такого остаёться кантик во круг текста Label.