public int ProgressBarInfo(double dfComplete, char[] strMessage, IntPtr pData) { RPCBatchForm form = (RPCBatchForm)Control.FromHandle(pData); int iValue = (int)(100 * dfComplete + 0.5); form.progressBar.Value = iValue; string strMsg = new string(strMessage); //form.labelMessage.Text = strMsg; return(1); }
private void btn_RpcCorrect_Click(object sender, EventArgs e) { RPCBatchForm visf = new RPCBatchForm(); visf.ShowDialog(); }