This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Opening local URL in browser


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]