Hello, I use this code to open URLs in the default browser:

VB Code:
  1. ShellExecute 0, "open", URL, "", "", 1

The problem is that he URL is being opened in the current browser window. Instead it should start a new browser, like if target was "_blank"

So my question: How can I pass the target frame when opening a URL?

Thanks,

NGE