Web development India freelance website designer developer India SEO

I am creating a global application hook. The callback procedure (WindowProc) is placed in the Module1 module. This call
allows you to intercept all windows messages before they are processed, but you cannot change them. If there is a
message WM_SETFOCUS or WM_KILLFOCUS the public procedure SETKILLFocus is called. In this procedure the
control with the handle from the message is searched and the backcolor is changed if the type of the control is matching
with the types that should be processed (It is not very usefull to change the backcolor of Buttons).

In a module:
--------------------------------------------------------------------------------------------------------------------------------

Option Explicit
' ----------------------------------------------------------------------------------
' Autohigh sample
' Written by Marcel A. FRITSCH
' Copyright 2002 by Marcel A. FRITSCH
' This software is FREEWARE. You may use it for your own projects but you may not re-sell the original or the source code.
' No warranty express or implied, is given as to the use of this program. Use at your own risk.
' ----------------------------------------------------------------------------------
'
' USER32 - Functions
Declare Function SetWindowsHookEx Lib "user32" Alias "SetWindowsHookExA" _
(ByVal idHook As Long, ByVal lpfn As Long, ByVal hmod As Long, ByVal dwThreadId As Long) As Long

Declare Function CallNextHookEx Lib "user32" _
(ByVal hHook As Long, ByVal ncode As Long, ByVal wParam As Long, lParam As Any) As Long

Declare Function UnhookWindowsHookEx Lib "user32" (ByVal hHook As Long) As Long

' KERNEL32 - Functions
Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" _
(hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)

' CONSTANTS
Public Const WH_CALLWNDPROC = 4
Public Const WM_SETFOCUS = &H7
Public Const WM_KILLFOCUS = &H8

' STRUCTS
Type MYSTRUCT
lParam As Long
wParam As Long
message As Long
hwnd As Long
End Type

' REST
Public lHook As Long

Public Function WindowProc(ByVal Hookid As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Dim SWINP As MYSTRUCT
CopyMemory SWINP, ByVal lParam, Len(SWINP)
WindowProc = CallNextHookEx(lHook, Hookid, wParam, ByVal lParam)
If SWINP.message = WM_SETFOCUS Or SWINP.message = WM_KILLFOCUS Then
Form1.SETKILLFocus SWINP.message, SWINP.hwnd
End If
End Function


program example:
_________________________________________________________________________

Private Sub Form_Load()
' Set global application hook
lHook = SetWindowsHookEx(WH_CALLWNDPROC, AddressOf WindowProc, App.hInstance, App.ThreadID)
End Sub

Public Sub SETKILLFocus(msg As Long, CHwnd As Long)
On Local Error Resume Next
Dim Ctrl As Control
For Each Ctrl In Controls
Err.Clear
If CHwnd = Ctrl.hwnd Then
If Err.Number = 0 Then
If msg = WM_SETFOCUS Then
If (TypeOf Ctrl Is TextBox) Or _
(TypeOf Ctrl Is ComboBox) Then
Ctrl.BackColor = &H80000018
End If
Else ' WM_KILLFOCUS
If (TypeOf Ctrl Is TextBox) Or _
(TypeOf Ctrl Is ComboBox) Then
Ctrl.BackColor = &H80000005
End If
End If
Exit For
End If
End If
Next ' Ctrl
End Sub

Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
' Give up global application hook
UnhookWindowsHookEx lHook
End Sub
Auto highlight

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300

India web developer web development India | Freelance web development ecommerce web developer | Prayagasoft - web designer India, Ecommerce developer india, Ecommerce design