VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

this makes form transperent only controls are visible

Rajeswararao.Gangina  (3 Submissions)   Windows API Call/Explanation   VB 6.0   Unknown Difficulty   Mon 13th November 2000   Mon 8th February 2021

this makes form transperent only controls are visible

API Declarations



Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long

'
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 this makes form transperent only controls are visible (1(1 Vote))
this makes form transperent only controls are visible.bas

this makes form transperent only controls are visible Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters