Example #1
0
        private void reportss_Click(object sender, EventArgs e) // כפתור הפקת דוחות
        {
            this.Hide();                                        // להסתיר את המסך הקודם
            ReportGUI rep = new ReportGUI();                    // מסך מתן הרשאות

            rep.Show();                                         // להציג את המסך
        }
Example #2
0
        private void btnChart_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Tính năng đang được cập nhật", "Hệ thống", MessageBoxButtons.OK, MessageBoxIcon.Information);
            pnlHighlight.Height = btnChart.Height;
            pnlHighlight.Top    = btnChart.Top;
            this.pnForm.Controls.Clear();

            ReportGUI form = new ReportGUI();

            form.FormBorderStyle = FormBorderStyle.None;
            form.TopLevel        = false;
            form.AutoScroll      = true;
            this.pnForm.Controls.Add(form);
            form.Show();
        }
Example #3
0
        public void OnMenuItemShowStats(object o, EventArgs args)
        {
            ReportGUI rg = new ReportGUI(this.mainWindow);

            rg.Run();
        }