*Moderators if you prefer i keep these all in one post please just tell me.*
If i want to copy the entile content of a text file to another how would i do this? i tried this but it didnt work at all.
If i want to copy the entile content of a text file to another how would i do this? i tried this but it didnt work at all.
Code:
Dim copy
Open "A:\vsigns.txt" For Input As copy
Open "c:\patient5.txt" For Output As #2
Print #2, ; copy
Close #2