I am trying to get some more info from some complex (at least for me complex) code. I am trying to have the code write some internal variable values into a text file. The code goes something like this:
Procedure ObjofInterest.Procof Interest
Var F : Text
....
AssignFile(F,'Atest.txt');
Append(F);
....
Writeln(F,... some internal variable values...);
...
CloseFile(F);
Compiles and runs but no text file. Any ideas?
-- Rich