Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/06/2010, 08:17
Avatar de -rommel_
-rommel_
 
Fecha de Ingreso: junio-2008
Ubicación: Lima
Mensajes: 360
Antigüedad: 16 años, 6 meses
Puntos: 1
Respuesta: conectar BD Access en red

encontre este codigo por la web... a ver si te ayuda...
Código vb:
Ver original
  1. Private Sub Conectar_Basedatos()
  2.     Dim sUbicacion As String
  3.     ' para conexion en red
  4.        ' sUbicacion = "\\Maq-01\documentos c\prueba\mydata.mdb"
  5.    With nc
  6.         .Provider = "Microsoft.Jet.OLEDB.4.0"
  7.         .Properties("Data Source").Value = sUbicacion
  8.         .Properties("Persist Security Info").Value = False
  9.         .Open
  10.     End With
  11.     Exit Sub
  12. Set nc = Nothing
  13.     End
  14. End Sub