Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/04/2008, 17:16
AnaGaby
 
Fecha de Ingreso: marzo-2008
Ubicación: San Luis, Mexico
Mensajes: 52
Antigüedad: 16 años, 9 meses
Puntos: 0
Re: Insertar un registro en un DataGrid por programacion

Hola mira segui tu consejo lo hize de esta forma:
Dim command As SqlCommand
Dim table As DataTable
Command = New SqlCommand()
Command.CommandText = "SELECT * FROM empleados"
Command.CommandType = CommandType.Text
Command.Connection = conexion
Command.Connection.Open()
lector = command.ExecuteReader()
table = New DataTable
table.Load(lector)
Dim dr As DataRow
dr = table.NewRow
dr(1) = Label3.Text
dr(2) = Label4.Text
dr(3) = Label5.Text
table.Rows.Add(dr)
pero cuando vuelvo a listar la tabla en el grid resulta que no guardo nada
que esta mal???
Gracias

AnaGaby