What could cause my cursor not to change

  • Thread starter Thread starter Michael Howes
  • Start date Start date
M

Michael Howes

I have a button, that when clicked runs a possibly long job. So I change the
cursor to WaitCursor
My cursor doesn't change.

I'm developing in C#

The hierarchy of controls were this button sits is deep.

if this matters...

Windows form
with a Panel on part of it
a UserControl shown in the panel
a docking windows manager (Infragistics) on the UserControl
a Tab control in the docking windows manager
and a button on the tab control

What's interesting is each tab on the tab control is slightly
different....but this one button calls the same method eventually....on two
of the three tabs the busy cursor DOES show.....

So what could cause the cursor change to not show up on this other tab?

thanks
mike
 
I have a button, that when clicked runs a possibly long job. So I change the
cursor to WaitCursor
My cursor doesn't change.

I'm developing in C#

The hierarchy of controls were this button sits is deep.

if this matters...

Windows form
with a Panel on part of it
a UserControl shown in the panel
a docking windows manager (Infragistics) on the UserControl
a Tab control in the docking windows manager
and a button on the tab control

I forgot to mention....I've tried

this.Cursor =
this.Parent.Cursor =
this.Cursor.Current =
this.Parent.Cursor.Current =
Cursor.Current =
and
System.Windows.Forms.Cursor.Current =

thanks

mike
 

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