コード例 #1
0
 public override void Refresh()
 {
     try {
         this.Cursor = Cursors.WaitCursor;
         reportStatus(new StatusEventArgs("Refreshing shippers..."));
         string clientNumber = this.cboClient.SelectedValue.ToString();
         this.mShippers.Clear();
         this.mShippers.Merge(FreightGateway.ViewLTLShippers(clientNumber));
         this.grdShippers.Focus();
         base.Refresh();
     }
     catch (Exception ex) { App.ReportError(ex, true, LogLevel.Error); }
     finally { setUserServices(); this.Cursor = Cursors.Default; }
 }
コード例 #2
0
 private void OnAutoRefresh(object sender, DoWorkEventArgs e)
 {
     //Event handler for background worker thread DoWork event; runs on worker thread
     try { e.Result = FreightGateway.ViewLTLShippers(this.mClientNumber); }
     catch { }
 }