Hi,
I created two window form (the two form call form1 and blank), when I click a button on the first form it will link to the second form. However, i face problem when I wish to change the second form text (name of the form) using the string I get from combobox. Here is what I wrote:
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
Blank().ShowDialog();
Blank().Text=this->comboBox1->SelectedItem->ToString();
}
Why is it so?? Can someone provide me some advice....PLS and million thanks.
Regards,
Adrian