Opening local URL in browser

Olaf Bachmann obachman@mathematik.uni-kl.de
Wed May 3 04:48:00 GMT 2000


Tor Lillqvist writes:
> Olaf Bachmann writes:
>  >   ShellExecute(NULL, "open", NULL, "index.html", "d:\\home\\obachman\\tmp\\", SW_SHOWDEFAULT);
> 
> I think that should be either:
> 
>   ShellExecute(NULL, "open", "file:///X|/path/to/index.html", NULL, "d:\\home\\obachman\\tmp\\", SW_SHOWDEFAULT);
> 
> where X is the drive letter, and /path/to/ is the directory where
> index.html is, with backslashes replaced by slashes, or:
> 
>   ShellExecute(NULL, "open", "X:\\path\\to\\index.html", NULL, "d:\\home\\obachman\\tmp\\", SW_SHOWDEFAULT);
> 
> with a full normal Windows pathname.

Yes and no. I mixed up the parameters to ShellExecute. The following
now works for me:

ShellExecute(NULL, "open", "C:\\index.html", NULL, NULL, SW_SHOWDEFAULT);

Thanks to all who replied.

Olaf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list