Nov 4, 2002 #1 aqm Programmer Aug 26, 2002 65 AO hi, how can i create a .txt file, I want regular text saved to a binary file (.txt.). help. aqm
Nov 4, 2002 #2 rushdib Programmer Jun 12, 2001 203 US You can use the command: Open filename(including path) For Output As #1 Print#1, deptno; empno;... Close #1 Look on help under Open or print commands Upvote 0 Downvote
You can use the command: Open filename(including path) For Output As #1 Print#1, deptno; empno;... Close #1 Look on help under Open or print commands