Пример #1
0
        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);
        }
Пример #2
0
        private void btn_RpcCorrect_Click(object sender, EventArgs e)
        {
            RPCBatchForm visf = new RPCBatchForm();

            visf.ShowDialog();
        }
Пример #3
0
 private void btn_RpcCorrect_Click(object sender, EventArgs e)
 {
     RPCBatchForm visf = new RPCBatchForm();
     visf.ShowDialog();
 }