2010-08-23, 11:49 PM
Code:
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e)
{
ofstream file;
file.open ("output.txt");
file << Output->Text;
file.close();
}?
Outside of that is just a bunch of stuff that handles the other buttons, textchange event in Output, et cetera.

