コード例 #1
0
ファイル: Customer.cs プロジェクト: GossmanJ/Automotive-CRM
        private void viewInvoicesBtn_Click(object sender, EventArgs e)
        {
            Invoices invoices = new Invoices(phone_numberTextBox.Text);

            invoices.ShowDialog();
        }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: GossmanJ/Automotive-CRM
        private void invoicesBtn_Click(object sender, EventArgs e)
        {
            Invoices invoices = new Invoices("");

            invoices.ShowDialog();
        }