Problem with wait cursor in C#.Net windows appliaction

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DKn
    New Member
    • Aug 2007
    • 53

    Problem with wait cursor in C#.Net windows appliaction

    Hi all,

    I am doing one c#.Net windows application.
    I am having one user Control. On button click When the process is going on, i made this.cursor = Cursors.WaitCur sor; Wait cursor is coming but ,still i am able to click on other controls (radio buttons) in the same form.

    Actually when the wait cursor is there means, we should not allow the user to do any other operation by clicking on any other controls..
    How to do that...

    Thanks in advance..
  • Pittaman
    New Member
    • Aug 2007
    • 20

    #2
    You need to disable those other controls (.Enable = False). If the controls are in a groupbox, disabling the groupbox should be enough...

    Setting the wait cursor only changes the appearance of the cursor.

    Comment

    Working...