Im not sure if this will work on C++ Bulider,<br>
but with my Visual C++, I can use something like<br>
the below. (I copied and pasted this from a<br>
previous reply I put here a while ago.)<p>
ShellExecute(/*handle_to_your_app_window*/, "open", "the_web_page", NULL, NULL, SW_SHOWMAXIMIZED);<p>
you will also need to #include shellapi.h<p>
Another interesting thing about this function is<br>
it will launch any file, so if you specified a<br>
file on a local drive in the "the_web_page" part,<br>
that file could be launched as well.<p>
Hope this helps,<br>
Justin