Make Forms Transperent revised with directcode without classess
Make Forms Transperent revised with directcode without classess
API Declarations
setwindowlong
setwindowpos
include this code in form declaration
Const GWL_EXSTYLE = (-20)
Const WS_EX_TRANSPARENT = &H20&
Const SWP_FRAMECHANGED = &H20
Const SWP_NOMOVE = &H2
Const SWP_NOSIZE = &H1
Const SWP_SHOWME = SWP_FRAMECHANGED Or SWP_NOMOVE Or SWP_NOSIZE
Const HWND_NOTOPMOST = -2
Rate Make Forms Transperent revised with directcode without classess
(1(1 Vote))
Include this code in form load or activate event
SetWindowLong me.hwnd, GWL_EXSTYLE, WS_EX_TRANSPARENT
SetWindowPos me.hwnd, HWND_NOTOPMOST, 0&, 0&, 0&, 0&, SWP_SHOWME
Make Forms Transperent revised with directcode without classess Comments
No comments yet — be the first to post one!
Post a Comment