|
Borland C ++ Builder FAQ
|
||
| The content | The last update: 12/12/2008 | |
|
How to use the cursors? The author: OlegGG HANDLE cur = LoadImage (0, "mycur.ani", IMAGE_CURSOR, 0,0, LR_DEFAULTSIZE + LR_LOADFROMFILE);
if (cur)
{
Screen-> Cursors [1] = cur;
Form1-> Cursor = 1;
}
else
{
ShowMessage ("oblom");
}
|