Exemplo n.º 1
0
        private void button_OK_Click(object sender, EventArgs e)
        {
            if (!ValidateClosing())
            {
                return;
            }

            groupBox1.Enabled    = false;
            progressBar1.Visible = true;
            label_Wait.Visible   = true;

            UpdateAveragePrice();
            CalculateItemValue();

            MessageBox.Show(this.Text + " berhasil dilakukan!!", AppCode.AssemblyProduct, MessageBoxButtons.OK, MessageBoxIcon.Information);
            f_ViewReport = new FormViewReport();
            f_ViewReport.lbl_UserName.Text = lbl_UserName.Text;
            f_ViewReport.listOfReports     = ListOfReports.ReportNeraca;
            f_ViewReport.DataId            = period;
            f_ViewReport.Show(this);
        }
Exemplo n.º 2
0
 private void OpenFormViewReport()
 {
     f_ViewReport = new FormViewReport();
     f_ViewReport.lbl_UserName.Text = toolStripStatusLabelLoginName.Text;
 }