HCURSOR LoadStandardCursor( LPCTSTR lpszCursorName ) const;
Return Value
A handle to a cursor if successful; otherwise NULL.
Parameters
lpszCursorName
An IDC_ manifest constant identifier that specifies a predefined Windows cursor. These identifiers are defined in WINDOWS.H. The following list shows the possible predefined values and meanings for lpszCursorName:
Remarks
Loads the Windows predefined cursor resource that lpszCursorName specifies.
Use the LoadStandardCursor or LoadOEMCursor member function to access the predefined Windows cursors.
Example
HCURSOR hCursor;
// Load the predefined Windows "up arrow" cursor.
hCursor = AfxGetApp()->LoadStandardCursor(IDC_UPARROW);
CWinApp Overview | Class Members | Hierarchy Chart
See Also CWinApp::LoadOEMCursor, CWinApp::LoadCursor, ::LoadCursor