语音识别控制问题,谢谢!
程序功能:语音控制下的数据采集当说出“开始采集”时,程序弹出对话框,用以保存数据,当用鼠标点击保存后,开始采集。
弹出对话框程序如下:
CString strFile(COleDateTime::GetCurrentTime().Format("%Y-%m-%d.txt"));
CFileDialog newdlg(false, "txt",strFile, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, "Text File (*.txt) |*.txt| |");
strFile="新建";
newdlg.m_ofn.lpstrTitle = strFile;
newdlg.m_ofn.nMaxFile = MAX_PATH;
if(newdlg.DoModal()==IDOK)
{
CFile filenew(newdlg.GetPathName(),CFile::modeWrite|CFile::modeCreate);
fileopen=true;
}
else
{
return;
}
file.Open(newdlg.GetPathName(),CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);
现在我想再弹出这个对话框后,通过说“保存数据”实现鼠标点击对话框“保存”功能。
语音识别已实现,请问{ }如何写代码?
if(strResult == CString("保存数据")) //识别结果
{
??????????????????????????
}
谢谢!