M
mattc66 via AccessMonster.com
Hi All,
I want to double click a cell and then browse to attach hyperlink.
Below is my double click event. It opens the windows browse option and I can
go to the file. However I am stopped at that point. It doesn't allow me to
attach. The below code wants me to save. I cant find the option to attach.
Private Sub PDF_File_DblClick(Cancel As Integer)
Dim strFilter As String
Dim strInputFileName As String
strFilter = ahtAddFilterItem(strFilter, "PDF Files (*.PDF)", "*.PDF")
strSaveFileName = ahtCommonFileOpenSave( _
OpenFile:=False, _
Filter:=strFilter, _
Flags:=ahtOFN_OVERWRITEPROMPT Or ahtOFN_READONLY)
End Sub
I want to double click a cell and then browse to attach hyperlink.
Below is my double click event. It opens the windows browse option and I can
go to the file. However I am stopped at that point. It doesn't allow me to
attach. The below code wants me to save. I cant find the option to attach.
Private Sub PDF_File_DblClick(Cancel As Integer)
Dim strFilter As String
Dim strInputFileName As String
strFilter = ahtAddFilterItem(strFilter, "PDF Files (*.PDF)", "*.PDF")
strSaveFileName = ahtCommonFileOpenSave( _
OpenFile:=False, _
Filter:=strFilter, _
Flags:=ahtOFN_OVERWRITEPROMPT Or ahtOFN_READONLY)
End Sub