I already try to do it but it only saves me the first line (that of the titles) and I need to start saving from the second line to the bottom.
this is my code:
private void btnguardar_Click(object sender, EventArgs e)
{
StreamWriter escribirenTxt = new StreamWriter(@"C:\Users\usuario\Desktop\Archivos.txt", true);
try
{
escribirenTxt.WriteLine(Column1.HeaderText + "," + Column2.HeaderText + "," + Column3.HeaderText + "," + Column4.HeaderText + "," + "\n");
MessageBox.Show("Registrado Exitosamente, C:/Users/usuarios/Desktop/Archivos.txt");
}
catch
{
MessageBox.Show("error al registrar...");
}
escribirenTxt.Close();
}