VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Transparent Internet Explorer for 1 to 255

Lio_Romania  (2 Submissions)   Windows API Call/Explanation   VB 6.0   Unknown Difficulty   Sun 9th October 2005   Mon 8th February 2021

Transparent Internet Explorer for 1 to 255

API Declarations


Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Private Declare Function SetLayeredWindowAttributes Lib "user32" (ByVal hwnd As Long, ByVal crey As Byte, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long

Private Const GWL_EXSTYLE = (-20)
Private Const WS_EX_LAYERED = &H80000
Private Const WS_EX_TRANSPARENT = &H20&
Private Const LWA_ALPHA = &H2&

Rate Transparent Internet Explorer for 1 to 255 (1(1 Vote))
Transparent Internet Explorer for 1 to 255.bas

Transparent Internet Explorer for 1 to 255 Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters