locked
how to cursor which can click and move to next page? RRS feed

  • Question

  • how to cursor which can click and move to next page?
    Saturday, January 12, 2013 1:13 PM

Answers

All replies

  • Unclear question, and there I could only Guess what you are looking for.

    I suppose you are looking for how implement "paging" in your Control. Correct?

    http://www.codeproject.com/Articles/67520/GridView-Paging-and-Sorting

    http://msdn.microsoft.com/en-us/library/aa479347.aspx


    Roar Jørstad aka sveroa
    Senior Consultant, EVRY as
    Blog: Notebook, trick & tips
    Please mark as answer or helpful if my post is useful

    • Proposed as answer by Cor Ligthert Saturday, January 12, 2013 2:41 PM
    • Marked as answer by Jason Dot Wang Monday, January 21, 2013 9:34 AM
    Saturday, January 12, 2013 1:44 PM
  • how to move a cursor..

    private void MoveCursor()
    {
       // Set the Current cursor, move the cursor's Position,
       // and set its clipping rectangle to the form. 
    
       this.Cursor = new Cursor(Cursor.Current.Handle);
       Cursor.Position = new Point(Cursor.Position.X - 50, Cursor.Position.Y - 50);
       Cursor.Clip = new Rectangle(this.Location, this.Size);
    }

    Saturday, January 12, 2013 5:47 PM
  • Hi K Shi Lan,

      Welcome to MSDN Forum Support.

      Please point out which techniques your project is using,this is the key point to guild us to help you out of trouble. If you are using ASP.NET and GridView control, I feel sveroa's suggestions has provided the sufficent information about it. If you only want to know how to move cursor, raju4u's suggestions has gived its related information.Based on this, you need to clarify your scenario more cleearly. If you feel the engineers who has mentioned your point,please feel free to mark his replies as answers.

      Thanks,

      Jason Wang


    Jason Wang [MSFT]
    MSDN Community Support | Feedback to us

    Monday, January 14, 2013 3:04 AM