Hai Friends,
In Job, I have used the following code line to generate a text file in which the file path is hard-coded.
TextIo f = new TextIo(@"D:\AX\input.txt", 'w', 0);
But I want to set it dynamically. For that I have created a new table "AAAA" and form named "BBBB" is bounded to that table. The form BBBB contains...
1. Input Filename,
2. Input Filepath
3. Output Filename
4. Output Filepath
On running the Job, I need to get the combination (concatenation) of Input Filepath + Input Filename + .txt and the text file should get stored in the specified folder.
How to write the equivalent code to: TextIo f = new TextIo(@"D:\AX\input.txt", 'w', 0);?
Thanks,
Aarvi.
*This post is locked for comments
I have the same question (0)