Click here to Skip to main content
Click here to Skip to main content

A Simple Way for Paging in DataGridView in WinForm Applications

By , 15 Jun 2011
 

Introduction

I have recently worked on paging in DataGridView for a WinForm application. I Googled it, but generally found very complicated codes. So I wanted to write my code to be easily understood by everyone. After some modifications, I tried to make my code really simple and want to share it with others.

image001.jpg

I have used button controls for the purpose of navigating switches.

I added required variables such as PgSize for number of rows per page, CurrentPageIndex for current page index and Totalpage for calculating maximum number of pages DataGridView is able to display.

private int PgSize = 20; 
private int CurrentPageIndex = 1;
private int TotalPage=0; 

As the name suggests, the following method is used to calculate the total number of pages for gridview:

private void CalculateTotalPages()
{
    int rowCount = ds.Tables["Customers"].Rows.Count;
    TotalPage = rowCount / PgSize;
    // if any row left after calculated pages, add one more page 
    if (rowCount % PgSize > 0)
        TotalPage += 1;
}

In order to retrieve records to display for the navigated page, I used a DataTable returned from GetCurrentRecord() method as datasource for gridview. This method returns the top 20 rows, (Size of PgSize variable) if navigated page is one. If navigated page is greater than one, then it calculates the previous pageOffset through the following line of code:

int PreviousPageOffSet= (page - 1) * PgSize; 

Now the query work starts, to select only pages from the current page and leaving earlier records apply query available in the following code:

private DataTable GetCurrentRecords(int page, SqlConnection con)
{
    DataTable dt = new DataTable();

    if (page == 1)
    {
        cmd2 = new SqlCommand("Select TOP " + PgSize + 
		" * from Customers ORDER BY CustomerID", con);
    }
    else
    {
        int PreviousPageOffSet= (page - 1) * PgSize;

        cmd2 = new SqlCommand("Select TOP " + PgSize +
        	" * from Customers WHERE CustomerID NOT IN " +
        	"(Select TOP " + PreviousPageOffSet+ 
	" CustomerID from customers ORDER BY CustomerID) ", con);
    }
    try
    {
        // con.Open();
        this.adp1.SelectCommand = cmd2;
        this.adp1.Fill(dt);
    }
    finally
    {
        con.Close();
    }
    return dt;
}

Navigating buttons are as usual. Here we only calculate the navigating pageIndex and pass it to GetCurrentRecords() method as argument to retrieve dataSource for our datagridview.

    private void btnFirstPage_Click(object sender, EventArgs e)
    {
        this.CurrentPageIndex = 1;
        this.dataGridView1.DataSource = GetCurrentRecords(this.CurrentPageIndex, con);
    }

    private void btnNxtPage_Click(object sender, EventArgs e)
    {
        if (this.CurrentPageIndex < this.TotalPage)
        {
            this.CurrentPageIndex++;
            this.dataGridView1.DataSource = 
		GetCurrentRecords(this.CurrentPageIndex, con);
        }
    }

    private void btnPrevPage_Click(object sender, EventArgs e)
    {
        if (this.CurrentPageIndex > 1)
        {
            this.CurrentPageIndex--;
            this.dataGridView1.DataSource = 
		GetCurrentRecords(this.CurrentPageIndex, con);
        } 
    }

    private void btnLastPage_Click(object sender, EventArgs e)
    {
        this.CurrentPageIndex = TotalPage;
        this.dataGridView1.DataSource = GetCurrentRecords(this.CurrentPageIndex, con); 
    }

    private void button1_Click(object sender, EventArgs e)
    {
        this.Close(); 
    }
  }
}

I hope this is the easiest way for paging a DataGridView.

This is my first article I have ever posted and I have tried my best to explain my code. So I welcome any type of suggestions.

History

  • 15th June, 2011: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

sk saini
Software Developer (Senior) Embossoft Solutions
India India
Member
Software developer with 3+ years of experience in c# Winform applications development on ASP.NET platform.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionhi everybody if any of you are still interested in datagridview paging, would you please try this one? thanks! PinmemberAlejandro Miralles28 Dec '12 - 8:35 
QuestionThank's Buddy Pinmemberdeid4r419 Dec '12 - 16:16 
GeneralVirtual Mode is better Pinmembernamdia16 Jun '11 - 8:32 
GeneralMy vote of 2 PinmemberSelvin15 Jun '11 - 23:43 
GeneralMy vote of 5 PinmemberMonjurul Habib15 Jun '11 - 8:21 
GeneralMy vote of 4 Pinmemberrajeshrisharma15 Jun '11 - 4:31 
GeneralRe: My vote of 4 Pinmembermadanbhanu9 Aug '12 - 19:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 15 Jun 2011
Article Copyright 2011 by sk saini
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid