예제 #1
0
 private void cmdLedger4_Click(object sender, EventArgs e)
 {
     Cursor = System.Windows.Forms.Cursors.WaitCursor;
     using (Finder.LedgerZoom frmLedgerZoom = new Solsage_Process_Management_System.Finder.LedgerZoom())
     {
         if (frmLedgerZoom.ShowDialog() == DialogResult.OK)
         {
             if (frmLedgerZoom.sResult != "")
             {
                 txtGlCode4.Text = frmLedgerZoom.sResult;
                 txtLineDescription4.Focus();
             }
         }
         Cursor = System.Windows.Forms.Cursors.Default;
     }
 }
예제 #2
0
 private void cmdSalesDebitSearch_Click(object sender, EventArgs e)
 {
     Cursor = System.Windows.Forms.Cursors.WaitCursor;
     using (Finder.LedgerZoom frmLedgerZoom = new Solsage_Process_Management_System.Finder.LedgerZoom())
     {
         if (frmLedgerZoom.ShowDialog() == DialogResult.OK)
         {
             if (frmLedgerZoom.sResult != "")
             {
                 txtCashDebit.Text = frmLedgerZoom.sResult;
                 txtCashDebitName.Text = frmLedgerZoom.sDescription;
             }
         }
         Cursor = System.Windows.Forms.Cursors.Default;
     }
 }
예제 #3
0
 private void cmdFindRoundingAccount_Click(object sender, EventArgs e)
 {
     Cursor = System.Windows.Forms.Cursors.WaitCursor;
     using (Finder.LedgerZoom frmLedgerZoom = new Solsage_Process_Management_System.Finder.LedgerZoom())
     {
         if (frmLedgerZoom.ShowDialog() == DialogResult.OK)
         {
             if (frmLedgerZoom.sResult != "")
             {
                 txtRoundingAcc.Text = frmLedgerZoom.sResult;
                 txtRoundingAccDetail.Text = frmLedgerZoom.sDescription;
             }
         }
         Cursor = System.Windows.Forms.Cursors.Default;
     }
 }