hi all i am very new to this.
i want to create a program that will open a .bin file and edit specific addresses in the hex dump and then save the file .
does this sound hard? am i wasting my time?
hope somebody can advise me
many thanks
ben lockett
newbie question
Started by benlockett, May 06 2010 05:29 AM
4 replies to this topic
#1
Posted 06 May 2010 - 05:29 AM
|
|
|
#2
Posted 06 May 2010 - 10:04 AM
hi all
if nobody can advise me on the above question could someone advise me on how to start from scratch to learn the basics.
many thanks ben
if nobody can advise me on the above question could someone advise me on how to start from scratch to learn the basics.
many thanks ben
#3
Posted 06 May 2010 - 12:39 PM
Well just start googling for tutorials on what you want to learn, I suggest these to start: :)
Visual C# .NET for Complete Beginners - a free programming course
C# Station: C# Tutorial Lesson 01 - Getting Started
C# / CSharp Tutorial
Visual C# .NET for Complete Beginners - a free programming course
C# Station: C# Tutorial Lesson 01 - Getting Started
C# / CSharp Tutorial
A man can be defined by what he does when no one is looking.
Science is only an educated theory, which we cannot disprove.
Science is only an educated theory, which we cannot disprove.
#4
Posted 06 May 2010 - 01:15 PM
thank you
will start reading!!
will start reading!!
#5
Posted 08 May 2010 - 12:00 AM
hi all i can get it to write to a file but it writes to the acsii of the file and i want it to write to the hex part of the file.
can anybody help me?
here is my code
File.Copy(textBox1.Text, textBox1.Text + "modified.bin");
FileStream binaryfile = new FileStream(textBox1.Text, FileMode.Open);
BinaryWriter Writer = new BinaryWriter(binaryfile);
BinaryReader reader = new BinaryReader(binaryfile);
Writer.Write("c9");
Writer.Write("9a");
Writer.Write("74");
Writer.Write("0c");
Writer.Close();
any help will be appreciated.
many thanks
ben
can anybody help me?
here is my code
File.Copy(textBox1.Text, textBox1.Text + "modified.bin");
FileStream binaryfile = new FileStream(textBox1.Text, FileMode.Open);
BinaryWriter Writer = new BinaryWriter(binaryfile);
BinaryReader reader = new BinaryReader(binaryfile);
Writer.Write("c9");
Writer.Write("9a");
Writer.Write("74");
Writer.Write("0c");
Writer.Close();
any help will be appreciated.
many thanks
ben


Sign In
Create Account

Back to top









