Question
How to excute Creo Asycn. Mode with MFC UI
I'm trying to develop an asnyc application that is excuted by MFC GUI.
I made GUI with MFC and code like below.
It's compiled well. But Creo is not started.
How can i excute Creo asnyc application with MFC UI?
void CCALCDlg::OnBnClickedStart()
{
ProError status;
status = ProEngineerStart("D:\\ptc\\wildfire50\\bin\\proe.exe",");
}

