Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/12/2009, 11:02
mad249
 
Fecha de Ingreso: septiembre-2009
Mensajes: 111
Antigüedad: 15 años, 3 meses
Puntos: 3
Respuesta: insertar en gridview y guardar

Cita:
Iniciado por a_moreno Ver Mensaje
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 original
  1. private void CreaTabla()
  2. {
  3.    System.Data.DataTable table;
  4.    table = new System.Data.DataTable();
  5.    table.Columns.Add("id_padre", typeof(System.String));
  6.    table.Columns.Add("nombre_p", typeof(System.String));
  7.    table.Columns.Add("edad_p", typeof(System.String));
  8.    table.Columns.Add("ocupacion", typeof(System.String));
  9. }
  10.  
  11. private void Cargar_Valores()
  12. {
  13.     CreaTabla();
  14.     System.Data.DataRow row;
  15.     //...tu Codigo.
  16.  
  17. }
__________________
Si caminas por la Senda del Conocimiento... y una Luz en la Oscuridad Ilumina tu Camino... No seas cu#$r@ y compártela.