Access VBA Code Compile error

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,338
Office Version
  1. 365
Platform
  1. Windows
I am getting a Compile Error: User-defined type not define. I had a freelancer develop this code for me (I am not smart enough to write this).
Code:
Private Sub Command101_Click()
    Dim fd As FileDialog
    Dim ExcelRunning As Boolean
    
    Dim xlApp As Excel.Application
    Dim mywb As Excel.Workbook
    Dim mysheet As Excel.Worksheet
    
On Error GoTo Err_Command101_Click

MsgBox "This will take several minutes"

    ' choose Excel file for import
    Set fd = Application.FileDialog(msoFileDialogFilePicker)
    With fd
        .ButtonName = "Select"
        .AllowMultiSelect = False
        .Filters.Add "Excel files", "*.xls; *.xlsx; *.xlsm", 1

        .Title = "Choose Excel file to import in to Microsoft Access Database"
        .InitialView = msoFileDialogViewDetails
        .Show

        If (.SelectedItems.Count > 0) Then
            Me.txtExcelFilePath = .SelectedItems(1)
        Else
            Exit Sub
        End If
    End With

    Set fd = Nothing
    ' --------------------------------------------------------------------
    
    ExcelRunning = IsExcelRunning()
    If ExcelRunning Then
        Set xlApp = GetObject(, "Excel.Application")
    Else
        Set xlApp = CreateObject("Excel.Application")
    End If
    ' --------------------------------------------------------------------

    ' open the book
    Set mywb = xlApp.Workbooks.Open(Me.txtExcelFilePath)
    
    For Each mysheet In mywb.Worksheets
        txtRowSource = txtRowSource & mysheet.Name & ";"
    Next
    
    Me.txtExcelSheets.RowSource = txtRowSource
    Me.txtExcelSheets.Requery
    ' --------------------------------------------------------------------
    
    ' close the book without the changes saved
    mywb.Close False
    Set mywb = Nothing
            
    If Not ExcelRunning Then
        xlApp.Quit
        Set xlApp = Nothing
    End If
    
    MsgBox "Excel file for import successfully selected!"
        
Exit_Command101_Click:
    Exit Sub

Err_Command101_Click:
    
    If Not wb Is Nothing Then
        mywb.Close False
        Set mywb = Nothing
    End If
            
    If ExcelRunning Then
        xlApp.Quit
        Set xlApp = Nothing
    End If
    
    MsgBox Err.Description
    Resume Exit_Command101_Click
End Sub

doesn't seem to like Dim fd As FileDialog
 
Last edited:

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
FileDialog should be fine in Access VBA.

When you go to Tools>References do you see anything marked as MISSING?

PS What's the code meant to do?
 
Upvote 0
You should set a reference to the latest Microsoft Office XX.0 Object Library (mine is Microsoft Office 15.0 Object Library).

see:
https://docs.microsoft.com/en-us/office/vba/api/access.application.filedialog

I would suggest you convert all of this to late binding once it is tested. That way you can be more confident it will not break when someone upgrades to a new version of Excel or Office.
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,013
Members
448,935
Latest member
ijat

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