Example #1
0
 /// <summary>
 /// see all the payments made with taller
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void btnAllTallerPayments_Click(object sender, EventArgs e)
 {
     try
     {
         var viewTallers = new AllTallerPaymentForm();
         viewTallers.Show();
     }catch (Exception)
     {
         MessageBox.Show(" something went wrong, try again", "Cash Desk", MessageBoxButtons.OK,
                         MessageBoxIcon.Information);
     }
 }
Example #2
0
        private void btnAllTallerPayments_Click(object sender, EventArgs e)
        {
            var viewTallers = new AllTallerPaymentForm();

            viewTallers.Show();
        }