Window Form Cursor

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

    #1

    Window Form Cursor

    Hi, I want to know that if the program is running and I want to use the
    cursor determinating it is running,
    I think it is the best for me to change the cursor before the procedure
    execute and change back the cursor after
    executed... how can I change the cursor whenever I move to anywhere inside
    the program?

    Thanks a lot~

    Sidney


  • Chris

    #2
    Re: Window Form Cursor

    Sidney wrote:[color=blue]
    > Hi, I want to know that if the program is running and I want to use the
    > cursor determinating it is running,
    > I think it is the best for me to change the cursor before the procedure
    > execute and change back the cursor after
    > executed... how can I change the cursor whenever I move to anywhere inside
    > the program?
    >
    > Thanks a lot~
    >
    > Sidney
    >
    >[/color]
    Just change the cursor and windows will handle the rest:

    Cursor = Cursor.Wait
    Then
    Cursor = Cursor.Arrow

    Comment

    • Cor Ligthert [MVP]

      #3
      Re: Window Form Cursor

      Sidney,

      Try to keep you to usual standards, than your clients will be happy. Any
      difference with that will direct give direct some anti against your program.

      Just my thought (but not mine alone)

      Cor


      Comment

      • Sidney

        #4
        Re: Window Form Cursor

        Thank You, Chris..
        I make it~

        Sidney

        "Chris" <no@spam.com> ???????:OWRCTbg LGHA.3276@TK2MS FTNGP09.phx.gbl ...[color=blue]
        > Sidney wrote:[color=green]
        >> Hi, I want to know that if the program is running and I want to use the
        >> cursor determinating it is running,
        >> I think it is the best for me to change the cursor before the procedure
        >> execute and change back the cursor after
        >> executed... how can I change the cursor whenever I move to anywhere
        >> inside the program?
        >>
        >> Thanks a lot~
        >>
        >> Sidney[/color]
        > Just change the cursor and windows will handle the rest:
        >
        > Cursor = Cursor.Wait
        > Then
        > Cursor = Cursor.Arrow[/color]


        Comment

        Working...