コード例 #1
0
ファイル: StockForm.cs プロジェクト: AlexNoBadMan/Stock
        private void ListOrganizationsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ReportDataForm reportDataForm = new ReportDataForm();

            reportDataForm.ReportId = 4;
            reportDataForm.ListOrganizationsGroupBox.Visible = true;
            reportDataForm.ShowDialog();
        }
コード例 #2
0
ファイル: StockForm.cs プロジェクト: AlexNoBadMan/Stock
        private void WaybillReportToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ReportDataForm reportDataForm = new ReportDataForm();

            reportDataForm.ReportId = 7;
            reportDataForm.WaybillReportGroupBox.Visible = true;
            reportDataForm.ShowDialog();
        }
コード例 #3
0
ファイル: StockForm.cs プロジェクト: AlexNoBadMan/Stock
        private void ShippedToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ReportDataForm reportDataForm = new ReportDataForm();

            reportDataForm.ReportId = 2;
            reportDataForm.ShippedGroupBox.Visible = true;
            reportDataForm.ShowDialog();
        }