Example #1
0
        private void buttonPrint_Click(object sender, EventArgs e)
        {
            PrinterDialog pd = new PrinterDialog();

            pd.ShowDialog();
            string printer = pd.printerName;

            if (!string.IsNullOrEmpty(printer))
            {
                printExceptions(printer);
            }
        }
Example #2
0
        private void buttonPrint_Click(object sender, EventArgs e)
        {
            PrinterDialog pd = new PrinterDialog();

            pd.ShowDialog();
            string printer = pd.printerName;

            MessageBox.Show(dataGridView1.Rows.Count.ToString() + " : " + dataGridView2.Rows.Count.ToString());
            if (!string.IsNullOrEmpty(printer))
            {
                if (dataGridView1.Rows.Count != 0)
                {
                    printClients(printer);
                    Thread.Sleep(2000);
                }
                if (dataGridView2.Rows.Count != 0)
                {
                    printMatters(printer);
                }
            }
        }
Example #3
0
        private void buttonPrint_Click(object sender, EventArgs e)
        {
            PrinterDialog pd = new PrinterDialog();

            pd.ShowDialog();
            string printer = pd.printerName;

            if (!string.IsNullOrEmpty(printer))
            {
                Cursor.Current = Cursors.WaitCursor;

                Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();

                Microsoft.Office.Interop.Excel.Workbook  xlWorkBook;
                Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;
                object misValue = System.Reflection.Missing.Value;

                xlApp       = new Microsoft.Office.Interop.Excel.Application();
                xlWorkBook  = xlApp.Workbooks.Add(misValue);
                xlWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);

                int StartCol = 1;
                int StartRow = 1;
                int j = 0, i = 0;

                //Write Headers
                for (j = 0; j < dataGridView1.Columns.Count; j++)
                {
                    Microsoft.Office.Interop.Excel.Range myRange = (Microsoft.Office.Interop.Excel.Range)xlWorkSheet.Cells[StartRow, StartCol + j];
                    myRange.Value2 = dataGridView1.Columns[j].HeaderText;
                }

                StartRow++;

                //Write datagridview content
                for (i = 0; i < dataGridView1.Rows.Count; i++)
                {
                    for (j = 0; j < dataGridView1.Columns.Count; j++)
                    {
                        try
                        {
                            Microsoft.Office.Interop.Excel.Range myRange = (Microsoft.Office.Interop.Excel.Range)xlWorkSheet.Cells[StartRow + i, StartCol + j];
                            myRange.Value2 = dataGridView1[j, i].Value == null ? "" : dataGridView1[j, i].Value;
                        }
                        catch
                        {
                            ;
                        }
                    }
                }

                Microsoft.Office.Interop.Excel.Range usedrange = xlWorkSheet.UsedRange;
                usedrange.Columns.AutoFit();
                xlApp.Visible = false;
                var _with1 = xlWorkSheet.PageSetup;
                _with1.Zoom           = false;
                _with1.PrintGridlines = true;
                _with1.PaperSize      = Microsoft.Office.Interop.Excel.XlPaperSize.xlPaperA4;
                _with1.Orientation    = Microsoft.Office.Interop.Excel.XlPageOrientation.xlLandscape;
                _with1.FitToPagesWide = 1;
                _with1.FitToPagesTall = false;

                _with1.PrintTitleRows = "$1:$" + dataGridView1.Columns.Count.ToString();

                string Defprinter = null;
                Defprinter          = xlApp.ActivePrinter;
                xlApp.ActivePrinter = printer;

                // Print the range
                usedrange.PrintOutEx(misValue, misValue, misValue, misValue,
                                     misValue, misValue, misValue, misValue);
                // }
                xlApp.ActivePrinter = Defprinter;

                // Cleanup:
                GC.Collect();
                GC.WaitForPendingFinalizers();

                Marshal.FinalReleaseComObject(xlWorkSheet);

                xlWorkBook.Close(false, Type.Missing, Type.Missing);
                Marshal.FinalReleaseComObject(xlWorkBook);

                xlApp.Quit();
                Marshal.FinalReleaseComObject(xlApp);
                Cursor.Current = Cursors.Default;
            }
        }