doesn't look like it's what i'm looking for.
Let's say you create a windows form and add a button. You click it and it takes you to the code...
Void button1_Click(System::Object^ sender, System::EventArgs^ e)
i make it:
Void button1_Click(System::Object^ sender, System::EventArgs^ e)
textBox1->Text = "Hello World";
When the button is pressed the textbox will say "hello world"
I want all of the WFA syntax to do this type of stuff(for C++, not vb, c#, etc)
|