I would like to use a custom embedded cursor, i tried this code, but i just see the normal cursor:
private void Form1_Load(object sender, EventArgs e)
{
Cursor mycur = new Cursor(GetType(), "mycursor.cur");
this.Cursor = mycur;
}
(the method is called from initalizecomponent) Why this isn't work, any other ideas? Thanks for any advice!