Cita:
Iniciado por a_moreno Acabo de checar el código, pero en esta linea genera error de NullReferenceException :
row = table.NewRow();
Seguré tratando de indagar, muchas gracias, cualquier ayuda es bienvenida.
Debes crear primero la tabla con el Formato para poder copiar ese formato al crear el DataRow..
Ejemplo
Código C++:
Ver originalprivate void CreaTabla()
{
System.Data.DataTable table;
table = new System.Data.DataTable();
table.Columns.Add("id_padre", typeof(System.String));
table.Columns.Add("nombre_p", typeof(System.String));
table.Columns.Add("edad_p", typeof(System.String));
table.Columns.Add("ocupacion", typeof(System.String));
}
private void Cargar_Valores()
{
CreaTabla();
System.Data.DataRow row;
//...tu Codigo.
}