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; } }
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; } }
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; } }