VB Code to open a Web Form

Idea Is there VB Code to open a Web Form
[99 byte] By [deenaMay3] at [2007-12-16]
# 1
if you have a form called myForm you can call
Dim cMyForm as New myForm
cMyForm.Show
in VS2005 you can also call My.Forms.MyForm.Show
papadi at 2007-9-9 > top of Msdn Tech,.NET Development,.NET Base Class Library...
# 2
Hi,

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

Vikram at 2007-9-9 > top of Msdn Tech,.NET Development,.NET Base Class Library...
# 3

System.Diagnostics.Process.Start(" http://localhost:1322/WebSite1/Services.aspx")

This slight alteration of you code was what I needed.

Thank You

deenaMay3 at 2007-9-9 > top of Msdn Tech,.NET Development,.NET Base Class Library...

.NET Development

Site Classified