Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Write a program for file "changing"
#6
It does work, it does exactly what you told it to do Wink

Maybe you mean this though?
Code:
open "C:\binfile.bin" for binary as #1
open "C:\binfile2.bin" for binary as #2

dim inbyte as string * 1

do
    get #1, , inbyte
    put #2, , inbyte
loop until eof(1)
close
Reply


Messages In This Thread
Write a program for file "changing" - by Plasma - 04-24-2004, 04:40 AM
Write a program for file "changing" - by Mango - 04-24-2004, 09:04 AM
Write a program for file "changing" - by Anonymous - 04-28-2004, 06:43 AM
Write a program for file "changing" - by CGI Joe - 04-28-2004, 04:38 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)