Hi guys,
I am doing a basic HTML Editor and encountered a problem with links to local html pages.
On the left there's a textbox and on the right a Webbrowser.
Everything seems to be working fine until I write links in the textbox:

HTML Code:
<a href="C:\Users\Michel\Desktop\myMSpJ\Project1/index.html"> Page 1</a>
I click but nothing happens. to make sure it's got a value, I right clicked on the link in the browser and clicked " Copy shortcut"
then paste somewhere else to see the value and it was:

HTML Code:
file:///C:/Users/Michel/Desktop/myMSpJ/Project1/index.html
I tried to change the <a href> to:

HTML Code:
<a href="index.html"> Page 1</a>
the page would change into a blank page with "Index.html" written.
clicked the copy shortcut on the link in the browser and the value was: "about: page1.html"

All External Links to the web work fine.

I also noticed that if I saved the textbox content as an html file and open it in another browser( not vb webbrowser), all links work fine!

Any help is welcome,
Mike