急求答案:我在文件转换程序里添加了一个进度条,当点击运行程序后,进度条就先跑,但是我还没有进行文件转换操作那,怎么实现它们的同步??

进度条的代码如下:




BOOL CTestDlg::OnInitDialog() 
{
CDialog::OnInitDialog();
   

    m_Progress.SetRange32(0,100);
    m_Progress.SetStep(5);
m_Progress.SetPos(0);
    SetTimer(1,500,0);
UpdatePercentText();

return TRUE;  // return TRUE unless you set the focus to a control
              // EXCEPTION: OCX Property Pages should return FALSE
}

void CTestDlg::UpdatePercentText()
{
         int nPos=m_Progress.GetPos();
         int nLow,nUp;
 m_Progress.GetRange(nLow,nUp);
 m_strPercent.Format("%4.0f%%",(float)nPos/(float)(nUp-nLow)*100.0);
 UpdateData(FALSE);
}

CScrollBar* CTestDlg::GetScrollBarCtrl(int nBar) const
{
// TODO: Add your specialized code here and/or call the base class

return CDialog::GetScrollBarCtrl(nBar);
}



void CTestDlg::OnTimer(UINT nIDEvent) 
{
// TODO: Add your message handler code here and/or call default
 UpdatePercentText();
if(m_Progress.GetPos()==100)
KillTimer(1);
        m_Progress.StepIt();
       
    CDialog::OnTimer(nIDEvent);
Sleep(50);
}

是不是我的进度条的对话框应该建成非模态的啊?请大虾指教啊 ?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值