Dim Cnx As ADODB.Connection
Dim pth As String 'Database Path
Dim Ctl As ADOX.Catalog 'Database Catalog from Actual Connection
Dim CtlTbl As ADOX.Table
Dim Col As ADOX.Column
Dim sGen As String
Dim i As Integer
Dim j As Integer
Dim k As Integer
Private Sub cmdConectar_Click()
On Error GoTo ErrGetPath
' Establece CancelError a Verdadero
cdlBasedatos.CancelError = True
' Establece banderas
cdlBasedatos.Flags = cdlOFNHideReadOnly
' Establece filtros
cdlBasedatos.Filter = "All Files(*.*)|*.*|Access 2000 DB (*.mdb)|*.mdb"
' Especifica filtro por defecto
cdlBasedatos.FilterIndex = 2
cdlBasedatos.ShowOpen
pth = cdlBasedatos.FileName
If LenB(pth) > 0 And LenB(Dir(pth)) > 0 Then
Coneccion
If Not (Cnx Is Nothing) Then
LlenaTabla
End If
End If
Exit Sub
ErrGetPath:
'User pressed the Cancel button
pth = vbNullString
End Sub
Sub Coneccion()
On Error GoTo CnnError
Dim strCnn As String
strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;"
strCnn = strCnn & "Data Source=" & pth & ";"
strCnn = strCnn & "Jet OLEDB:Engine Type=5;"
Set Cnx = New ADODB.Connection
Cnx.Open strCnn
Exit Sub
CnnError:
Dim psw As String
Select Case Err
Case Is = -2147217843 'Database password incorrect
psw = ObtainPassword
strCnn = vbNullString
strCnn = "Provider=Microsoft.Jet.OLEDB.4.0;"
strCnn = strCnn & "Data Source=" & pth & ";"
strCnn = strCnn & "Jet OLEDB:Engine Type=5;"
strCnn = strCnn & psw
If LenB(psw) = 0 Then
Resume Next
Else
Resume
End If
Case Else
MsgBox "Error Number : " & Err & vbCrLf & Error, vbCritical, Err.Source
End
End Select
End Sub
Sub LlenaTabla()
On Error GoTo ErrorTab
Screen.MousePointer = vbHourglass
Set Ctl = New ADOX.Catalog
Ctl.ActiveConnection = Cnx
i = 0
'Table Definitions
For Each CtlTbl In Ctl.Tables
If CtlTbl.Type = "TABLE" Then
lstTablas.AddItem CtlTbl.Name
End If
Next
Screen.MousePointer = vbDefault
Exit Sub
ErrorTab:
MsgBox Err.Description, vbCritical
Screen.MousePointer = vbDefault
End Sub
Private Function ObtainPassword() As String
Dim psw As String
psw = vbNullString
Do While Len(psw) = 0
frmLogin.Show vbModal
psw = frmLogin.Password
If frmLogin.NoMore Then
ObtainPassword = vbNullString
Exit Do
End If
Loop
If Len(psw) > 0 And (Not frmLogin.NoMore) Then
ObtainPassword = ";Jet OLEDB:Database Password=" & psw & ";"
Unload frmLogin
Else
MsgBox "Entre el password correcto.", vbExclamation
ObtainPassword = vbNullString
Set Cnx = Nothing
Unload frmLogin
End If
End Function