maybe this is my unanswered answer what i want, i want to add data in textbox to sfdatagrid using button.. If using the built in DataGridView what I want can be achieved with the following code :
private void button1_Click(object sender, EventArgs e)
{
string NewData = textBox1.Text;
dataGridView1.Rows.Add(NewData);
textBox1.Clear();
}
Attachment:
WindowsFormsApp1_c79d406d.7z