我的断点设置后,在程序里执行时,我按了Go,直接得到结果,根本不进入代码
以下是我的代码,这是怎么回事??void CEDstarDlg::OnEncrypt() 
{
    UpdateData(true); //将对话框中各控件值传给相应变量
if(m_SourcePath == "" || m_TargetPath == "" || m_Password == "")
{
MessageBox("请先选择加密文件和加密后的保存路径*,\n然后设置加密密码既可!","提示");
return ;
} //将源文件复制到要保存的目标路径后,再进行加密操作
CString tempPath;
    if(m_TargetPath.Right (2)=='\\')
       tempPath=m_TargetPath+m_Filename;
else
       tempPath=m_TargetPath+'\\'+m_Filename;
CopyFile(m_SourcePath,tempPath,false); if(EncryptFile(tempPath,m_Password.GetBuffer (0)))