//查看事务提醒
 private void label1_Click(object sender, EventArgs e)
 {
     this.Close();
     Form remindForm = new Remind_Index();
     remindForm.ShowDialog();
 }
 //事务提醒
 private void ToolStripMenuItem_RemindSth_Click(object sender, EventArgs e)
 {
     try
     {
         Form remindSth = new Remind_Index();
         remindSth.ShowDialog();
     }
     catch (System.Exception)
     {}
 }