What do u mean by open a Web Form? If you are referring to opening a Web Form from a Windows Application in VB, then you can use Process.Start and pass the link as a argument to Internet Explorer.
Sample:
Process.Start("iexplore.exe", "http://localhost/WebApp101/WebForm1.aspx")
Regards,
Vikram
System.Diagnostics.Process.Start(
" http://localhost:1322/WebSite1/Services.aspx")This slight alteration of you code was what I needed.
Thank You