3

I am creating a Windows Form Application using an MDI Form. In the MDI Form I have a SplitContainer, in Panel1 is a TreeView and I load forms into Panel2.

So far everything works with one exception, I cannot turn off the WaitCursor. I have tried changing it in code and in the form properties. Changing it in code does nothing and when I try to change it in the form properties it automatically reverts back to WaitCursor.

What am I missing?

Otiel
  • 18,404
  • 16
  • 78
  • 126

1 Answers1

0

I found the solution by changing the UseWaitCursor property to false. It was so simple yet I could not find the answer to this anywhere