How to write data from a variable value to a txt file?
' AnsiString t; if (RadioButton1->Checked == true) { t = t + "text" + " "; } t->Lines->SaveToFile("1.txt"); ' How to write data from a variable value to a txt file?
' AnsiString t; if (RadioButton1->Checked == true) { t = t + "text" + " "; } t->Lines->SaveToFile("1.txt"); ' Source: https://ru.stackoverflow.com/questions/805847/
All Articles