So I have a Macro-enabled Excel/VBA Workbook with a button which writes a .txt file and then calls a .exe in the same directory. The .exe is written in C++ and is supposed to output another file.
The problem I'm having is that for some reason when the Excel Workbook calls the C++ .exe, the executable processes the information from the .txt just fine, but the output file doesn't ever show up. But, if I have the workbook simply make the .txt file, and then I execute the C++ program myself then the program outputs the file correctly.
It seems that calling the .exe from the Excel/VBA workbook is causing the .exe not to output a file.
Here is the Excel/VBA code
Open (ActiveWorkbook.Path & "\excel.txt") For Output As #1
Print #1, MyString
Close #1
ActiveWorkbook.FollowHyperlink (ActiveWorkbook.Path & "\MyProgram.exe"),
NewWindow:=True
And the C++ is split among multiple files but the key part which may be causing issue is below
ofstream OutputFile;
int Sequence[12];
...
...
OutputFile.open("Output.solution");
for (int i=1;i<12;i++)
OutputFile << Int_to_String(Sequence[i]) << " ";
OutputFile.close();
So how can I get the C++ executable to output the "Output.solution" file when being called from Excel VBA? Just to be clear - if I run the C++ program separately it does output the file.
Edit: When executing the .exe separately, the proper information is put into the "Output.solution" file in the same directory, but when calling from Excel/VBA, the .exe instead places an empty "Output.solution" into the My Documents folder.
How can I make this file appear back in the original directory when calling from Excel/VBA? and how can I ensure it will actually fill the file with information as it does when called outside excel?