Example #1
0
 private void cmdCustomer_Click(object sender, EventArgs e)
 {
     Cursor = System.Windows.Forms.Cursors.WaitCursor;
     using (Solsage_Process_Management_System.Finder.CustomerZoom frmCustomerZoom = new Solsage_Process_Management_System.Finder.CustomerZoom())
     {
         if (frmCustomerZoom.ShowDialog() == DialogResult.OK)
         {
             if (frmCustomerZoom.sResult != "")
             {
                 //txtCustomer.Text = frmCustomerZoom.sResult;
             }
         }
         Cursor = System.Windows.Forms.Cursors.Default;
     }
 }
 private void CompanyNote_Load(object sender, EventArgs e)
 {
     Solsage_Process_Management_System.Finder.CustomerZoom frmCustomerZoom = new Solsage_Process_Management_System.Finder.CustomerZoom();
     frmCustomerZoom.txtAccountCode.Text = "";
 }