This website has been designed for use with the FireFox browser. Please use FireFox to view this page.
SetClassLong Reference in C#, VB.NET and VB6
Library:user32.dll
Visual Basic 6 definition
Declare Function SetClassLong Lib "user32.dll" Alias "SetClassLongA" (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Visual Basic .NET definition
Declare Function SetClassLong Lib "user32" Alias "SetClassLongA" (ByVal hwnd As Integer, ByVal nIndex As Integer, ByVal dwNewLong As Integer) As Integer
C# definition
[DllImport("user32", EntryPoint="SetClassLong")]
public static extern int SetClassLongA(int hwnd, int nIndex, int dwNewLong)
Description
SetClassLong sets a single 32-bit value from the information about the window class to which the specified window belongs. This function can also set a 32-bit value within the extra memory area associated with the window class.
SetClassLong
Replaces the specified 32-bit value at the specified offset into the extra class memory or the WNDCLASSEX structure.
System.Windows.Forms.Control.CursorSystem.Windows.Forms.Control.NameSystem.Windows.Forms.Form.BackColorSystem.Windows.Forms.Form.IconSystem.Windows.Forms.Form.MenuSystem.Windows.Forms.Form.CreateParams.ClassStyleSystem.Windows.Forms.Form events
Return Value
If an error occured, the function returns 0 (use GetLastError to get the error code). If successful, the function returns the previous setting of the 32-bit value which was changed.
Parameters
Constants
Further Information:
For further information on Windows API functions such as these, and how to use these API's in your
C# and VB.NET applications, please refer to the book 'Network programming in .NET' (Buy at Amazon UK) (Buy at Amazon US)