예제 #1
0
        public int ProgressBarInfo(double dfComplete, char[] strMessage, IntPtr pData)
        {
            VIStatictisForm form = (VIStatictisForm)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_VIStatistic_Click(object sender, EventArgs e)
        {
            VIStatictisForm visf = new VIStatictisForm();

            visf.ShowDialog();
        }
예제 #3
0
 private void btn_VIStatistic_Click(object sender, EventArgs e)
 {
     VIStatictisForm visf = new VIStatictisForm();
     visf.ShowDialog();
 }