I have a vb app that opens a pre-made html file on a shared drive. I think the shared drive doesnt like the line...
Dim FileToRun As String
FileToRun = CurDir & "\XYZ.html"
Shell ("cmd /c " + Chr(34) + FileToRun + Chr(34))
Is there an alternate way to open the html file without using the cmd object?
Dim FileToRun As String
FileToRun = CurDir & "\XYZ.html"
Shell ("cmd /c " + Chr(34) + FileToRun + Chr(34))
Is there an alternate way to open the html file without using the cmd object?