so far I could manage to create OpenFileDialog and select the txt file.
after that ,How could I display the contect of selected txt file into TextBox?
*************************************************************
private: virtual System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
System::Windows::Forms::DialogResult OK = openFileDialog1->ShowDialog();
}
private: System::Void openFileDialog1_FileOk(System::Object^ sender, System::ComponentModel::CancelEventArgs^ e)
{
????????????????????????????????
}
***********************************************************