J
Joel Allen
Hello,
I have code in my custom task form that opens a file:
Sub CommandButtonQuoteBasedOnGo_Click()
Dim objWeb
On Error Resume Next
Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate Item.UserProperties("QuoteBasedOn").value
objWeb.Visible = True
End Sub
Is there a way to just open the file without IE? - in a way that would be
the same as double cliking the file in Windows Explorer.
Thank you very much,
Joel
I have code in my custom task form that opens a file:
Sub CommandButtonQuoteBasedOnGo_Click()
Dim objWeb
On Error Resume Next
Set objWeb = CreateObject("InternetExplorer.Application")
objWeb.Navigate Item.UserProperties("QuoteBasedOn").value
objWeb.Visible = True
End Sub
Is there a way to just open the file without IE? - in a way that would be
the same as double cliking the file in Windows Explorer.
Thank you very much,
Joel