Beispiel #1
0
        //public void OnRowsCopied(IndiansInc.BatchSizeCompletedEventArgs e)
        //{
        //	//if (OnRowsCopied != null) { OnRowsCopied(this, new RowsCopiedEventArgs(e)); }
        //	this.Copied = System.Convert.ToInt32( e.CompletedRows);
        //	//this.Status = string.Format("Copying {0} out of {1} - {2}" , this.Copied, this.Count, this.Percentage);
        //	this.ShowProgress();
        //}

        public void OnRowsCopied(object sender, RowsCopiedEventArgs e)
        {
            this.Copied = e.RowsCopied;
            //this.Status = "Copying " + this.Copied.ToString();
            this.ShowProgress();
        }
Beispiel #2
0
 void manager_OnRowsCopied(object sender, RowsCopiedEventArgs e)
 {
     //throw new NotImplementedException();
 }