How do i create transparent form like this?
I am Biginner
I try to use this API(In my module)
Public Declare Function SetWindowLong Lib "USER32" Alias "SetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Public Declare Function SetLayeredWindowAttributes Lib "USER32" (ByVal hWnd As Long, ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
With this code(In form)
Private Sub Form_Load()
SetWindowLong Me.hWnd, (-20), &H80000
SetLayeredWindowAttributes Me.hWnd, 0, 200, &H1
End Sub
It will transparent all black color in this form.
But I want to make somethings like this
without form's border
with other color.
I'm thai, I can't use English language fluently.

