MikeGeitner
Technical User
Hello,
I'm trying to use the FileDialog property to allow a user to select one or more files to "attach" to a record in a database. The paths to the files would be stored in a table. So far, I can select files and concatenate them in a string. How would you go about storing these file paths in a table? I think there would usually be one file that would need to be attached, but could be up to six or more, I don't know for sure. Would you need them each in their own field?
Thanks,
Mike
Code, which you'll recognize from the help file:
I'm trying to use the FileDialog property to allow a user to select one or more files to "attach" to a record in a database. The paths to the files would be stored in a table. So far, I can select files and concatenate them in a string. How would you go about storing these file paths in a table? I think there would usually be one file that would need to be attached, but could be up to six or more, I don't know for sure. Would you need them each in their own field?
Thanks,
Mike
Code, which you'll recognize from the help file:
Code:
Private Sub cmdAdd_Click()
Dim fd As FileDialog
Dim vrtSelectedItem As Variant
Dim strAttach As String
Set fd = Application.FileDialog(msoFileDialogFilePicker)
With fd
If .Show = -1 Then
For Each vrtSelectedItem In .SelectedItems
strAttach = strAttach & "," & vrtSelectedItem
Next vrtSelectedItem
MsgBox (strAttach)
Else
End If
End With
Set fd = Nothing
End Sub