Как бы вы хотели дать пользователю возможность изменить имя файла thestream с помощью C++ MFC. Я хотел бы добавить Edit Control Box, который даст пользователю возможность вводить имя файла перед нажатием кнопки save. Это мой текущий код, любая обратная связь будет принята с благодарностью.Запрос пользователя на ввод имени файла, созданного с использованием потока 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);
}