I have an Indian flag cursor like sym66.cur and I used it in C# code. It is running but it is not getting in proper image. Instead, it is getting a black image. How can make the cursor display in the proper format?
This is my code:
private void New_Registration_Load(object sender, EventArgs e)
{
this.Cursor = new Cursor(Application.StartupPath + "\\sym66.cur");
}