vs2005 access of shared member problem

  • Thread starter Thread starter gadya
  • Start date Start date
G

gadya

"Cursor.Current = Cursors.Default"
generates: Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated.
 
Cursor.Current = Cursors.Default

First of all, it is a warning only.
However the better way is to use
Me.Cursor=Cursors.Default
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top