0
如何讓用戶能夠使用C++ MFC更改ofstream文件的名稱。我想添加一個編輯控制框,使用戶能夠在單擊保存前輸入文件名。這是我目前的代碼,任何反饋將不勝感激。請求用戶輸入命名正在使用ofstream C++ MFC創建的文件
void CECET_MFC_Dialog_Based_IntroDlg::OnBnClickedSave()
{
UpdateData(true);
ofstream myfile ("Save_Random.xls");
if (myfile.is_open())
{
myfile << "This is the 1st line.\n" << endl;
for(int index=0; index<100; index++){ // samples to create
myfile << setprecision(4) << dblArray[index] << endl;
}
myfile << "This is another line.\n";
myfile << "Max = " << rndMax << endl;
myfile << "Min = " << rndMin << endl;
myfile << "Mean = " << Final_Avg << endl;
myfile.close();
}
else cout << "Unable to open file";
UpdateData(false);
}