Change Mouse Cursor

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Shawn Mesiatowsky

    Change Mouse Cursor

    how do you change the mouse cursor to an hour glass? thanks for your help


  • Morten Wennevik

    #2
    Re: Change Mouse Cursor

    Hi Shawn,

    You use the Cursor property of the control you want the cursor to change
    for.

    this.Cursor = Cursors.WaitCur sor;

    You might want to save the previous cursor or set it to Cursors.Default
    when needed.

    --
    Happy Coding!
    Morten Wennevik [C# MVP]

    Comment

    • Shiva

      #3
      Re: Change Mouse Cursor

      this.Cursor = Cursors.WaitCur sor;

      "Shawn Mesiatowsky" <shawn@nospam.c om> wrote in message
      news:#Rh5rWetEH A.820@TK2MSFTNG P12.phx.gbl...
      how do you change the mouse cursor to an hour glass? thanks for your help



      Comment

      • Phil Williams

        #4
        RE: Change Mouse Cursor

        Cursor = Cursors.WaitCur sor;

        Regards,
        Phil

        "Shawn Mesiatowsky" wrote:
        [color=blue]
        > how do you change the mouse cursor to an hour glass? thanks for your help
        >
        >
        >[/color]

        Comment

        Working...