Encryption maker problems

I'm not certain where to begin on this one. I want to be able to type things in a textBox1->Text box and have it save as a word document that changes the words, spaces, number, etc. Then correctly arranges them when someone reads with the same software. But again, I'm at a complete lost here...

REASON:
I could say something like:

1
2
3
4
5
private: System::Void button3_Click(System::Object^  sender, System::EventArgs^  e) 
		 
		 {
			 textBox->Text ="a";
		 }


However, it wouldn't say the file the way I want, Actually it wouldn't save it at all. Also if I had a whole paragraph of text it would now just be

"a"

/////////////

So how can I tell the program to take each letter and read it as

hello
h=2
e=y
l=d
l=d
o=q

myfile << "2yddq"
myfile.close();

This may be a program way out of my level, but it doesn't hurt to ask. Thanks :)
bump
Topic archived. No new replies allowed.