Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.622 Beiträge
Delphi 12 Athens
|
Re: Cursor aus resource laden
16. Mai 2008, 21:54
Zitat von Win32 SDK:
The LoadCursor function loads the specified cursor resource from the executable (.EXE) file associated with an application instance.
HCURSOR LoadCursor(
HINSTANCE hInstance, // handle of application instance
LPCTSTR lpCursorName // name string or cursor resource identifier
);
Parameters
hInstance
Identifies an instance of the module whose executable file contains the cursor to be loaded.
lpCursorName
Points to a null-terminated string that contains the name of the cursor resource to be loaded. Alternatively, this parameter can consist of the resource identifier in the low-order word and zero in the high-order word. The MAKEINTRESOURCE macro can also be used to create this value.
Detlef "Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
|