PERFECT, ITSME... (grinning from ear to ear). That's EXACTLY what I wanted! I did read through Allen Browne's two sites, but it was too much for me to follow. I do understand your explanation now, though.
For future readers who may be as confused as I was, I have reposted below the following code that does work correctly (at least it does on my computer). THANKS AGAIN!!
Code:
Private Sub cmdPickLink_Click()
Dim strFilePath As String
With Application.FileDialog(msoFileDialogFilePicker)
.AllowMultiSelect = False
.Title = "Locate a file to Import"
.ButtonName = "Import"
.Filters.Clear
'Change the following path location to suit your particular needs:
.InitialFileName = "\\Inventory\Items\picPickFile.JPG"
.InitialView = msoFileDialogViewThumbnail
If .Show = 0 Then
'There is a problem
Exit Sub
End If
'Save the first file selected
strFilePath = Trim(.SelectedItems(1))
strFilePath = "Display Text#" & strFilePath & "#"
End With
'Change the "tblItems" to the name of your own table:
strTable = "tblItems"
'Change fldNotesLink to the name of your own hyperlink field in the above table:
Me.fldNotesLink = strFilePath
End Sub
I will now have to find the button to "Solve" this thread.