How to put hyperlink into output window?

Hi
I'm try to place hyperlink into build output window. I want to provide user navigate to html file with specific build results.
But the output is plain text. Not the hyper link.
My code is look like this:

OutputWindow ow = _application.ToolWindows.OutputWindow;
OutputWindowPane owP;

owP = ow.OutputWindowPanes.Item("Build");
owP.Activate();
owP.OutputString("www.mycorp.com");

What is wrong?

Thanks!
Vasiliy

[473 byte] By [vasiliy.kiryukhin] at [2008-1-7]
# 1

Hi Vasiliy,

You should use "http://" prefix to get it to work.

In the code snippet above you should use following line:

owP.OutputString("http://www.mycomp.com");

DmitryPavlov at 2007-10-2 > top of Msdn Tech,Visual Studio,Visual Studio Extensibility...
# 2
Thanks a lot!

also i find
file://.......

Thanks again!

vasiliy.kiryukhin at 2007-10-2 > top of Msdn Tech,Visual Studio,Visual Studio Extensibility...

Visual Studio

Site Classified