Ik heb enige tijd het voorbeeld van een db gevonden om de opdracht uit te voeren dat een knop in een formulier een ander bestand opent (bijv. een PDF file).
Door in de VBA formulering aanpassingen aan te brengen in functie van mijn database (Access 2003), hoopte ik dat het geheel zou werken. Nu geeft de VBA een compileerfout aan en staat de eerste regel in het geel: "Een door de gebruiker gedefinieerd gegevenstype is niet gedefinieerd
Ik ken niets van VBA programmering en vraag hierbij dat iemand mij stap voor stap kan aangeven hoe ik deze compileerfout kan verbeteren. Dit is de VBA formulering:
Private Sub KNO_DOC_Click()
'Declare a variable as a FileDialog object.
Dim fd As FileDialog (STAAT BLOK GEBLOKT)
'Create a FileDialog object as a File Picker dialog box.
Set fd = Application.FileDialog(msoFileDialogFilePicker)
'Declare a variable to contain the path
'of each selected item. Even though the path is a String,
'the variable must be a Variant because For Each...Next
'routines only work with Variants and Objects.
Dim vrtSelectedItem As Variant
'Use a With...End With block to reference the FileDialog object.
With fd
If IsNull(Me.lijst_documentlocatie) Or Me.lijst_documentlocatie = "" Then
MsgBox ("Voer eerst de locatie van de documenten in!"), vbInformation, "Let op!"
Me.lijst_documentlocatie.SetFocus
Exit Sub
Else
.InitialFileName = Forms!Frm_projectdocumenten![Frm_documenten]!lijst_documentlocatie.Column(1)
.Filters.Add "Documenten", "*.xls; *.pdf; *.rtf; *.png; *.ppt; *.doc; *.msg", 1
.Filters.Add "Alle bestanden", "*.*", 2
End If
'Use the Show method to display the File Picker dialog box and return the user's action.
'The user pressed the action button.
If .Show = -1 Then
'Step through each string in the FileDialogSelectedItems collection.
For Each vrtSelectedItem In .SelectedItems
'vrtSelectedItem is a string that contains the path of each selected item.
'You can use any file I/O functions that you want to work with this path.
'This example simply displays the path in a message box.
Me.Documentnaam = ""
Me.Documentnaam = vrtSelectedItem
Next vrtSelectedItem
'The user pressed Cancel.
Else
End If
End With
'Set the object variable to nothing.
Set fd = Nothing
End Sub
thanks bij voorbaat
Door in de VBA formulering aanpassingen aan te brengen in functie van mijn database (Access 2003), hoopte ik dat het geheel zou werken. Nu geeft de VBA een compileerfout aan en staat de eerste regel in het geel: "Een door de gebruiker gedefinieerd gegevenstype is niet gedefinieerd
Ik ken niets van VBA programmering en vraag hierbij dat iemand mij stap voor stap kan aangeven hoe ik deze compileerfout kan verbeteren. Dit is de VBA formulering:
Private Sub KNO_DOC_Click()
'Declare a variable as a FileDialog object.
Dim fd As FileDialog (STAAT BLOK GEBLOKT)
'Create a FileDialog object as a File Picker dialog box.
Set fd = Application.FileDialog(msoFileDialogFilePicker)
'Declare a variable to contain the path
'of each selected item. Even though the path is a String,
'the variable must be a Variant because For Each...Next
'routines only work with Variants and Objects.
Dim vrtSelectedItem As Variant
'Use a With...End With block to reference the FileDialog object.
With fd
If IsNull(Me.lijst_documentlocatie) Or Me.lijst_documentlocatie = "" Then
MsgBox ("Voer eerst de locatie van de documenten in!"), vbInformation, "Let op!"
Me.lijst_documentlocatie.SetFocus
Exit Sub
Else
.InitialFileName = Forms!Frm_projectdocumenten![Frm_documenten]!lijst_documentlocatie.Column(1)
.Filters.Add "Documenten", "*.xls; *.pdf; *.rtf; *.png; *.ppt; *.doc; *.msg", 1
.Filters.Add "Alle bestanden", "*.*", 2
End If
'Use the Show method to display the File Picker dialog box and return the user's action.
'The user pressed the action button.
If .Show = -1 Then
'Step through each string in the FileDialogSelectedItems collection.
For Each vrtSelectedItem In .SelectedItems
'vrtSelectedItem is a string that contains the path of each selected item.
'You can use any file I/O functions that you want to work with this path.
'This example simply displays the path in a message box.
Me.Documentnaam = ""
Me.Documentnaam = vrtSelectedItem
Next vrtSelectedItem
'The user pressed Cancel.
Else
End If
End With
'Set the object variable to nothing.
Set fd = Nothing
End Sub
thanks bij voorbaat