What's the best way to open a web page from VB6 today? We have a command from our program's Help menu to open a HTML help document.
We had a ShellExecute command but recent Windows security updates appear to block that method.
Our developer is now proposing a solution...
However, IE is dying (if not already dead). We should open the default browser instead. Are there any suggestions how to do this?
We had a ShellExecute command but recent Windows security updates appear to block that method.
Our developer is now proposing a solution...
Code:
CreateObject("internetexplorer.application")
However, IE is dying (if not already dead). We should open the default browser instead. Are there any suggestions how to do this?