VBA conversion

jtodd

Board Regular
Joined
Aug 4, 2014
Messages
194
Hi
I have an old excell file that I am trying to update from 97 to 2016.
All works well apart from this bit of code

Set Db = Workspaces(0).OpenDatabase(Path, ReadOnly:=True)

The file refers to an access 97 database wich I have now conferted to access 2016 .

When I run the code i get a debug error with this line of code highligted , do i need a different code for access 2016?

Any help
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
What's the error?

Also, what is the code that this line is from meant to be doing?
 
Upvote 0
This is the full code
Code:
Sub GetRouteQueryDef()
       
         Dim Db As Database
         Dim Qd As QueryDef
         Dim Rs As Recordset
         Dim Ws As Object
         Dim i As Integer
      Dim Path As String
      
      Path = "S:\Jim Todd\Testing_Recovered\RDC_Excel_testing\PlanningTracker\Tracker.accdb"
       Set Ws = Sheets("RouteCodes")

       Ws.Activate
       Range("A1").Activate
       Selection.CurrentRegion.Select
       Selection.ClearContents
       Range("A1").Select

       Set Db = Workspaces(0).OpenDatabase(Path, ReadOnly:=True)
       Set Qd = Db.QueryDefs("Newark_RDC_Route_NBDR_A")
       Set Rs = Qd.OpenRecordset()
       For i = 0 To Rs.Fields.Count - 1
           Ws.Cells(1, i + 1).Value = Rs.Fields(i).Name
       Next
      Ws.Range(Ws.Cells(1, 1), Ws.Cells(1, Rs.Fields.Count)).Font.Bold _
          = True

       Ws.Range("a2").CopyFromRecordset Rs
       Sheets("RouteCodes").Select
       Range("A1").Select
       Selection.CurrentRegion.Select
       Selection.Columns.AutoFit
       Range("A1").Select

       Qd.Close
       Rs.Close
       Db.Close


   End Sub

It gets data from the database .

Error message
Run Time error '429'
ActiveX componant cant create componant
 
Upvote 0
Are you copying the data from the Access query/table Newark_RDC_Route_NBDR_A into Excel?

If you are try this.
Code:
Sub GetRouteQueryDef()
Dim ws As Worksheet
Dim conn As Object
Dim rs As Object
Dim strPath As String
Dim I As Long

    strPath = "S:\Jim Todd\Testing_Recovered\RDC_Excel_testing\PlanningTracker\Tracker.accdb"

    Set ws = Sheets("RouteCodes")

    ws.Range("A1").CurrentRegion.Select

    Set conn = CreateObject("ADODB.Connection")
    With conn
       .Provider = "Microsoft.ACE.OLEDB.12.0"
       .ConnectionString = "Data Source=" & strPath & ";"
    End With
    
    Set rs = CreateObject("ADODB.Recordset")
    
    rs.Open "Newark_RDC_Route_NBDR_A", conn ' SELECT * FROM Newark_RDC_Rout_NBDR_A
    
    With ws
    
        For I = 0 To rs.Fields.Count - 1
            .Cells(1, I + 1).Value = rs.Fields(I).Name
        Next I
    
        .Cells(1, 1).Resize(1, rs.Fields.Count).Font.Bold = True

        .Range("a2").CopyFromRecordset rs
        
        .UsedRange.EntireColumn.AutoFit
        
    End With
    
    conn.Close
    
    Set conn = Nothing
    
    rs.Close
    
    Set rs = Nothing

End Sub
 
Upvote 0
Hi i get an error message

Runtime Error 1004
Select Method of Range class failed
 
Upvote 0
Change this,
Code:
ws.Range("A1").CurrentRegion.Select
to this.
Code:
ws.Range("A1").CurrentRegion.ClearContents
 
Upvote 0
Sorry but now get error message

Runtime Error 3709
the conection cannot be used to perform this operation . It is either
closed or invalid in this context .
 
Upvote 0
You still haven't mentioned what this code is meant to do so what I posted was kind of a guess.

One last shot.
Code:
Sub GetRouteQueryDef()
Dim ws As Worksheet
Dim conn As Object
Dim rs As Object
Dim strPath As String
Dim I As Long

    strPath = "S:\Jim Todd\Testing_Recovered\RDC_Excel_testing\PlanningTracker\Tracker.accdb"

    Set ws = Sheets("RouteCodes")

    ws.Range("A1").CurrentRegion.ClearContents

    Set conn = CreateObject("ADODB.Connection")

    With conn
       .Provider = "Microsoft.ACE.OLEDB.12.0"
       .ConnectionString = "Data Source=" & strPath & ";"
    End With
    
    conn.Open

    Set rs = CreateObject("ADODB.Recordset")
    
    rs.Open "Newark_RDC_Route_NBDR_A", conn ' SELECT * FROM Newark_RDC_Rout_NBDR_A", conn
    
    With ws
    
        For I = 0 To rs.Fields.Count - 1
            .Cells(1, I + 1).Value = rs.Fields(I).Name
        Next I
    
        .Cells(1, 1).Resize(1, rs.Fields.Count).Font.Bold = True

        .Range("a2").CopyFromRecordset rs
        
        .UsedRange.EntireColumn.AutoFit
        
    End With
    
    conn.Close
    
    Set conn = Nothing
    
    rs.Close
    
    Set rs = Nothing

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,574
Messages
6,120,329
Members
448,956
Latest member
Adamsxl

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top