private void approvedToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cheques cq = new Cheques();

            cq.ChequeStatus = "Clear";
            cq.Show();
        }
        private void bouncedToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cheques cq = new Cheques();

            cq.ChequeStatus = "Bounced";
            cq.Show();
        }
        private void pendingToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Cheques cq = new Cheques();

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