private void loantransactionsHistoryBtn_Click(object sender, EventArgs e)
 {
     this.Visible = false;
     if (lth == null)
     {
         lth = new LoanTransactionsHistory(this);
     }
     lth.Visible = true;
 }