简体   繁体   中英

DataGridview to excel from different forms c#

I have a windows c# application which has a dataGridview which displays access database. When i click 'Report' button i want a small pop up form to be displayed which checks administrator password and if authenticated the gridview should be exported to excel sheet. However this is not happening as i guess gridview and login are two different forms.

 private void button1_Click(object sender, EventArgs e)
    {

        try
        {

            OleDbConnection con = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\dell\Documents\Database5.accdb;Jet OLEDB:Database Password=sudeep;");
            con.Open();
            OleDbCommand cmd = new OleDbCommand("select * from Login where id='" + textBox1.Text + "' and pass='" + textBox2.Text + "'", con);
            OleDbDataReader dr = cmd.ExecuteReader();
            if (dr.Read() == true)
            {
                //MessageBox.Show("Login Successful");
                this.Visible = false;
                //Form4 frm = new Form4();
                //frm.Show();
                //Form1 fr = new Form1();
                //fr.Dispose(true);
                Form2 frm2 = new Form2();
                frm2.Show();

                this.Close();
                System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ThreadStart(ThreadProc1));
                t.Start();



                Microsoft.Office.Interop.Excel.Application ExcelApp =
         new Microsoft.Office.Interop.Excel.Application();
                Microsoft.Office.Interop.Excel._Workbook ExcelBook;
                Microsoft.Office.Interop.Excel._Worksheet ExcelSheet;

                int i = 0;
                int j = 0;

                //create object of excel
                ExcelBook = (Microsoft.Office.Interop.Excel._Workbook)ExcelApp.Workbooks.Add(1);
                ExcelSheet = (Microsoft.Office.Interop.Excel._Worksheet)ExcelBook.ActiveSheet;
                //export header
                for (i = 1; i <= frm2.dgv.Columns.Count; i++)
                {
                    ExcelSheet.Cells[1, i] = frm2.dgv.Columns[i - 1].HeaderText;
                }

                //export data
                for (i = 1; i <= frm2.dgv.RowCount; i++)
                {
                    for (j = 1; j <= frm2.dgv.ColumnCount; j++)
                    {
                        ExcelSheet.Cells[i + 1, j] = frm2.dgv.Rows[i - 1].Cells[j - 1].Value;
                    }
                }

                ExcelApp.Visible = true;

                //set font Khmer OS System to data range
                Microsoft.Office.Interop.Excel.Range myRange = ExcelSheet.get_Range(
                                          ExcelSheet.Cells[1, 1],
                                          ExcelSheet.Cells[frm2.dgv.RowCount + 1,
                                          frm2.dgv.ColumnCount + 1]);
                Microsoft.Office.Interop.Excel.Font x = myRange.Font;
                x.Name = "Arial";
                x.Size = 10;

                //set bold font to column header
                myRange = ExcelSheet.get_Range(ExcelSheet.Cells[1, 1],
                                         ExcelSheet.Cells[1,frm2.dgv.Columns.Count]);
                x = myRange.Font;
                x.Bold = true;
                //autofit all columns
                myRange.EntireColumn.AutoFit();

                //
                ExcelSheet = null;
                ExcelBook = null;
                ExcelApp = null;


           }
            else
            {
                MessageBox.Show("Login as adminstrator to generate report");
            }
        }

My datagridview is on form 2 and i am trying to access it from form 3 ie login form I have used the public datagridview dgv {get;set} command as well still the application does not open. Please help

Try this, instead of using interop, you can do this to generate CSV that can read easily by excel:

in your form2 where datagridview resides do this:

public DataGridView DgReport = new DataGridView();

private void buttonReport_Click()
{
    //assuming your dataGridview is already populated
    DgReport = yourDataGridview;

    Form3 form3 = new Form3(this);
    form3.ShowDialog();
    form3.Dispose();
}

In Form3:

private Form2 _form2 {get;set;}

public Form3(Form2 form2)
{
    _form2 = form2;
}


private buttonGenerateReport_Click()
{
    int columnsCount;

    var writer = new StreamWriter("test.csv");

    //get number of columns
    columnsCount = _form2.DgReport.Columns.Count;
    for (int i = 0; i < columnsCount - 1; i++)
    { 
        writer.Write(_form2.DgReport.Columns[i].Name.ToString().ToUpper() + ",");
    } 
    writer.WriteLine();

    //write on excel
    for (int i = 0; i < (_form2.DgReport.Rows.Count - 1); i++)
    { 
        for (int j = 0; j < columnsCount; j++)
        { 
            if (_form2.DgReport.Rows[i].Cells[j].Value != null)
            {
                writer.Write(_form2.DgReport.Rows[i].Cells[j].Value + ",");
            }
            else 
            {
                writer.Write(",");
            }
        }

        writer.WriteLine();
    }

    //close file
    writer.Close();
}

You can add the following line in the class where u want to use the datagridview :

System.Windows.Forms.Form f = System.Windows.Forms.Application.OpenForms["FormName"]; // form name where you have dgv

and call the dgv by following :

((FormName)f).dgv.Rows.Count

Change this where u want to fetch the dgv details. Try it once

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM