I need to change the cursor in a static member function but I receive a compiler error
error C2671 : static member functions do not have 'this' pointers
this->Cursor = System::Windows::Forms::Cursors::Default;
How do I modify the code so it will work in a static member function?
Thanks.