If you use a DataGrid you will need to start your application with the datagrid UNBOUND and add the information manually.
1.) First, retrieve your data.
2.) Next, add the data manually:
DataGridView1.Rows.Add()
DataGridView1.Rows(new row # here).Cells(0).Value = 'your table data here'
DataGridView1.Rows(new row # here).Cells(1).Value = 'your table data here'
DataGridView1.Rows(new row # here).Cells(2).Value = 'your table data here'
DataGridView1.Rows(new row # here).Cells(3).Value = 'your textbox data here'
DataGridView1.Rows(new row # here).Cells(4).Value = 'your textbox data here'
DataGridView1.Rows(new row # here).Cells(5).Value = 'your textbox data here'
Best Regards,
Earl Francis