Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
Declare Function EnableWindow Lib "user32" (ByVal hwnd As Integer, ByVal fEnable As Integer) As Integer;
User-Defined Types:
None.
Notes:
The sample code below compiles and runs but seems to do nothing!
Tips & Tricks:
This function is useful if you want to mimic the functionality of a modal window without using form.ShowDialog() method. Disable the parent window by using this function.
Please add some!
Sample Code:
Class DK
Declare Function GetDesktopWindow Lib "user32" () As Long
Declare Function EnableWindow Lib "user32" (ByVal hwnd As Integer, ByVal fEnable As Integer) As Integer
Public Shared Sub DisableKeyMouseInput()
Dim lDesktop_hWnd As Integer
Dim lRet As Integer
lDesktop_hWnd = GetDesktopWindow()
lRet = EnableWindow(lDesktop_hWnd, False)
End Sub
Public Shared Sub EnableKeyMouseInput()
Dim lDesktop_hWnd As Integer
Dim lRet As Integer
lDesktop_hWnd = GetDesktopWindow()
lRet = EnableWindow(lDesktop_hWnd, True)
End Sub
End Class
class ManagedWinapi.SystemWindow that has a settable Enabled property.
The EnableWindow API
6/3/2011 9:52:45 AM - -193.47.77.5
http://mwinapi.sourceforge.net/
3/31/2008 6:53:29 AM - -217.54.254.83
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).