top-right pointing arrow cursor?

  • Thread starter Thread starter Alien
  • Start date Start date
A

Alien

I need to display a top-right pointing arrow cursor, the same type that
appears when you move your mouse over the line number margin on the left
side. It's not part of the Cursors class, anyone know how I can display one
like it?

Thanks
 
You can include a custom cursor resource in your project, and then load the
cursor at runtime, and set it to the form's (or control's) cursor property.

-Rob [MVP]
 
thanks, I'll try it.

Rob Teixeira said:
You can include a custom cursor resource in your project, and then load the
cursor at runtime, and set it to the form's (or control's) cursor property.

-Rob [MVP]
 
thanks again, it works.

Rob Teixeira said:
You can include a custom cursor resource in your project, and then load the
cursor at runtime, and set it to the form's (or control's) cursor property.

-Rob [MVP]
 
Back
Top