visual c++ textbox problem

Hi,
i try make a program to be able to change information from my .ini file with a textbox and a button.

So when i change text from the textbox it change my information in my ini file.

i tried this,but its not working.

private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
WritePrivateProfileString(("Test"),("test"), (this->textBox1->Text), ("C:\\test2.ini"));
}


That's C++/CLI, a Microsoft variation of the C++ language. Almost nobody here knows it. Best if you ask your C++/CLI questions @ MSDN Forums.
Topic archived. No new replies allowed.