J
J.S.
I can show Hello World in a MessageBox with this code:
private: System::Void button1_Click(System::Object^ sender,
System::EventArgs^ e) {MessageBox::Show("Hello, World!");
}
but I cannot show it in a textbox with this code:
private: System::Void button2_Click(System::Object^ sender,
System::EventArgs^ e) {textBox1::Show("Hello World");
}
I am using VC++ 2005 Express Edition beta.
I'd appreciate any pointers. It was so much easier to do in C#.
Thanks,
J.S.
--
private: System::Void button1_Click(System::Object^ sender,
System::EventArgs^ e) {MessageBox::Show("Hello, World!");
}
but I cannot show it in a textbox with this code:
private: System::Void button2_Click(System::Object^ sender,
System::EventArgs^ e) {textBox1::Show("Hello World");
}
I am using VC++ 2005 Express Edition beta.
I'd appreciate any pointers. It was so much easier to do in C#.
Thanks,
J.S.
--