Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/10/2004, 20:48
Avatar de Mickel
Mickel
 
Fecha de Ingreso: mayo-2002
Ubicación: Lima, Peru
Mensajes: 4.619
Antigüedad: 22 años
Puntos: 7
Yo hago esto...

Dim oConn As New OleDbConnection
Dim oCmd As New OleDbCommand
oConn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & (la ruta) & ";Extended Properties=""DBASE 5.0;"";"
oConn.Open()
oCmd.Connection = oConn
oCmd.CommandText = "" 'el comando
oCmd.ExecuteNonQuery()
oconn.Close()