Link to home
Start Free TrialLog in
Avatar of adamtrask
adamtrask

asked on

Using nuPage control to implement paging in a windows form dataGridView i

Looking for examples on the net for implementing data Grid View paging in windows form I encountered the use of a control which I never came a cross before. What is more I don't know where to find it in the many tools of the windows form.
The control is called nuPage.
Below is a piece of code I copied just to show it in context.
Please advise. Thank you.

 try
            {
                conn.Open();
                nuPage.Maximum = Math.Ceiling(decimal.Parse(cmd.ExecuteScalar().ToString()) / 10);
                nuPage.Minimum = 1;
                nuPage.Increment = 1;
                nuPage.Value = 1;
                conn.Close();
            }
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Never heard of the control. Could it be code that does paging using a numeric up/down control? Where did you see this please post the link?
Avatar of adamtrask
adamtrask

ASKER

ASKER CERTIFIED SOLUTION
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
So Sorry.... I was under the impression that I accepted your solution and awarded you the points....