Пример #1
0
        private void mnuTrialBalance_Click(object sender, EventArgs e)
        {
            frmTrial tr = new frmTrial();

            tr.Show();
            tr.BringToFront();
        }
Пример #2
0
        private void metroTile4_Click(object sender, EventArgs e)
        {
            frmTrial tr = new frmTrial();

            tr.Show();
            tr.BringToFront();
        }
Пример #3
0
        private void ShowReport()
        {
            ReportDocument rp    = new ReportDocument();
            string         rPath = "";
            DataSet        ds    = new DataSet();
            SqlCommand     Cmd   = new SqlCommand();

            Cmd.Connection  = clsConnection.Conn;
            Cmd.CommandText = "select * from TblRPTLEDGER order by GLID";
            //Cmd.CommandText = "Select * from View_Bill where CashMemo='" + memono.Trim() + "'order by convert(datetime,IndentDate,103)";
            //   if (mode == "Cash")
            //   {
            rPath = Application.StartupPath + "\\Trial.rpt";
            //rPath="D:\\Personal\\Project\\FINNSOFT\\FINNSOFT\\Report\\Trial.rpt";
            //   }
            //   else
            //   {

            //   }

            frmTrial ftrl = new frmTrial();

            rp.Load(rPath);
            rp.DataDefinition.FormulaFields["compname"].Text   = "\"" + Global.branch + "\"";
            rp.DataDefinition.FormulaFields["rptperiod"].Text  = "\"" + Global.trlfrmdt.ToString("dd/MM/yyyy") + " - " + Global.trltodt.ToString("dd/MM/yyyy") + "\"";
            rp.DataDefinition.FormulaFields["fin_period"].Text = "\"" + Global.gFromDt.ToString("dd/MM/yyyy") + " - " + Global.gToDt.ToString("dd/MM/yyyy") + "\"";
            //rp.SetParameterValue("cmpname", Global.branch);
            //rp.SetParameterValue("dt_period",Global.gFromDt + " - "+ Global.gToDt );
            SqlDataAdapter sDAP = new SqlDataAdapter();

            sDAP.SelectCommand = Cmd;
            sDAP.Fill(ds, "Trial");

            //Data.Pres pr = new AppointmentMaster.Data.Pres();


            rp.SetDataSource(ds.Tables["Trial"]);
            //btnEXCEL.Enabled = false;
            crystalReportViewer1.ReportSource = rp;

            crystalReportViewer1.RefreshReport();
            this.crystalReportViewer1.Show();
            //rptViewer.ShowDialog();
            Cmd.Dispose();
        }
Пример #4
0
        private void trialBalanceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmTrial tr = new frmTrial();

            tr.Show();
        }
Пример #5
0
        private void toolStripButton2_Click(object sender, EventArgs e)
        {
            frmTrial tr = new frmTrial();

            tr.Show();
        }