home *** CD-ROM | disk | FTP | other *** search
- 'Since there is not a patch specified will put results in folder the macro is in
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the String." str$ 'allows user input into str
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the First Number." x1 'allows user input into x1
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the Second Number." x2 'allows user input into x2
- sys(130)=-10 'X placement of input box
- sys(131)=-10 'Y placement of input box
- input "Enter the Third Number." x3 'allows user input into x3
- y1$=x1 'converts numeric to string
- y2$=x2 'converts numeric to string
- y3$=x3 'converts numeric to string
- open "a", 1, "steve.txt" 'open file to place input in
- print #1, str$; 'inserts string
- print #1, ","; 'places comma
- print #1, y1$; 'inserts number
- print #1, ","; 'places comma
- print #1, y2$; 'places 2nd number
- print #1, ","; 'places comma
- print #1, y3$ 'places last number
-