Desktop Functions: Smart Device Functions:
|
SetWindowLong (user32)
C# Signature:
[DllImport("user32.dll")] VB.NET Signature:
<DllImport("user32.dll")> _ User-Defined Types:None. Notes:None. Tips & Tricks:Certain window data is cached, so changes you make using SetWindowLong will not take effect until you call the SetWindowPos function. Specifically, if you change any of the frame styles, you must call SetWindowPos with the SWP_FRAMECHANGED flag for the cache to be updated properly. Sample Code:The following sample uses the GetWindowLong and SetWindowLong to remove the 3D border in the MDI client area.
Private Declare Auto Function SetWindowLong Lib "User32.Dll" (ByVal hWnd As IntPtr, ByVal nIndex As Integer, ByVal dwNewLong As Integer) As Integer Alternative Managed API:Do you know one? Please contribute it! The above signature is incorrect. The dwNewLong parameter must be an IntPtr, not an int, because the native function takes a DWORD (unsigned int), not an integer. - This is not quite true: passing int and int32 into SetWindowLong does still work. -- This functions takes a LONG as third argument and return type, and LONG is declared as a 32-bit signed integer. The function SetWindowLongPtr supersedes this function and has the LONG_PTR type for the third argument and return value. LONG_PTR is 32-bits for a 32-bits OS and 64-bits on a 64-bit OS. Please edit this page!Do you have...
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). |
|