Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Writing in raw 1's and 0's filter_list
Author
Message
Writing in raw 1's and 0's #1
Hey Smile
Past few days I was trying to make a program to write raw 0's and 1's into a file.
Sadly I failed, since all the ways I founf write in ASCII

here is last code I tested:
Code:
Dim fs As New FileStream(TextBox2.Text, FileMode.Create, FileAccess.Write)
        Dim s As New BinaryWriter(fs)
        s.BaseStream.Seek(0, SeekOrigin.End)
        s.Write(TextBox1.Text)
        s.Close()

Thanks Smile

Enjoy!!!

If you wanna test, here is some translations: http://1llusion.fileave.com/test.txt

Thanks again Smile
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply





Messages In This Thread
Writing in raw 1's and 0's - by 1llusion - 01-31-2011, 01:59 PM



Users browsing this thread: 1 Guest(s)