public ShowCharges(int ChargeID)
 {
     _showCharges = new Fpp.Data.ShowCharges(ModuleSettings);
     DataSet ds = _showCharges.getChargesFor(ChargeID);
     if (ds.Tables[0].Rows.Count > 0)
     {
         LoadRow(ds.Tables[0].Rows[0]);
     }
 }