Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to export to text the SQL version of all queries in a 2010 mdb.

This code runs in 2003. VBA is not my strength.

Can anyone give me pointers on how to adapt it to 2010?

The first error message is on line

Dim dbs As Database

User-defined type not defined

Public Function ExportObjects()
      Dim dbs As Database
      Dim ctr As Container
      Dim doc As Document
      Dim qdf As QueryDef

      Dim ff As Integer
      Dim lngCount As Long
      Dim strPath As String                   ' path to backup files
      Dim strFileDoc As String                ' name of doc file
      Dim strFileNumber As String
      Dim strFileObjectLog As String

      On Error GoTo ExportObjects_Error

      strPath = "U:\objects\"

      strFileObjectLog = "object.lst"

      ff = FreeFile()
      strFileNumber = "#" & CStr(ff)
      lngCount = 0
      Open strPath & strFileObjectLog For Output As ff
      Set dbs = CurrentDb

      For Each qdf In dbs.QueryDefs
       lngCount = lngCount + 1
       strFileDoc = strPath & qdf.Name & ".sql"
       Debug.Print lngCount, strFileDoc
       SaveAsText acQuery, qdf.Name, strFileDoc   '& qdf.Name & ".sql"
       Print #ff, acQuery & Chr$(9) & qdf.Name & Chr$(9) & qdf.Name & ".sql"
      Next qdf

End Function  
share|improve this question

closed as not a real question by C. A. McCann, corsiKa, Nambari, sschaef, ЯegDwight Nov 15 '12 at 23:27

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

The most likely problem is that you need to add a reference to Microsoft DAO (Data Access Objects). This was referenced by default in 2003. To do this:

  1. Enter VBA IDE
  2. Go to menu Tools --> References...
  3. Under Available References, scroll down to "Microsoft DAO 3.6 Object Library" and check the box next to it
  4. Click OK to close the References dialog box
  5. Re-try your code
share|improve this answer
Microsoft DAO 3.6 Object Library is not the correct DAO version for Access 2010. The current version is Microsoft Office 12.0 Access Database Engine Object Library and it is available by default in new databases. However, I agree that there seems to be a missing library. – Remou Nov 15 '12 at 20:07

This works for me:

Public Function qry() As Boolean
    Dim db As Database
    Dim qdef As QueryDef
    Dim iq As Integer

    Set db = CurrentDb
    For iq = 0 To db.QueryDefs.Count - 1
        Set qdef = db.QueryDefs(iq)
        Debug.Print iq, qdef.Name, qdef.SQL
    Next

    qry = True
    Debug.Print "done"
End Function

The only references I have checked are Visual Basic for Applications and Microsoft Access 14.0 Object Library, which I believe are included by default.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.