|
-
August 8th, 2007, 08:13 PM
#1
LockScreenUpdate - LockWindowsUpdate
LockScreenUpdate - LockWindowsUpdate
Hi
Dos anyone now how Can i lock My Screen 2 Update
?
LockWindowsUpdate Me.hWnd (not working)
And
LockWindowsUpdate GetDesktopWindow (not working)
Last edited by imosha; August 8th, 2007 at 08:17 PM.
-
August 10th, 2007, 03:17 PM
#2
Re: LockScreenUpdate - LockWindowsUpdate
Code:
Option Explicit
Private Declare Function LockWindowUpdate Lib "user32" (ByVal hwndLock As Long) As Long
Private Sub Command1_Click()
Dim iCount As Long
LockWindowUpdate Me.hwnd
iCount = 0
Do Until iCount = 100000
' This loop will cause flicker when the LockWindowUpdate is commented out
Me.List1.AddItem iCount
DoEvents
iCount = iCount + 1
Loop
LockWindowUpdate False
End Sub
-
August 10th, 2007, 03:47 PM
#3
Re: LockScreenUpdate - LockWindowsUpdate
the question was for screen #2, though
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|