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); }
private void OpenFormViewReport() { f_ViewReport = new FormViewReport(); f_ViewReport.lbl_UserName.Text = toolStripStatusLabelLoginName.Text; }