コード例 #1
0
        private void approvedToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cheques cq = new Cheques();

            cq.ChequeStatus = "Clear";
            cq.Show();
        }
コード例 #2
0
        private void bouncedToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cheques cq = new Cheques();

            cq.ChequeStatus = "Bounced";
            cq.Show();
        }
コード例 #3
0
        private void pendingToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cheques cq = new Cheques();

            cq.ChequeStatus = "Pending";
            cq.Show();
        }