编程论坛
注册
登录
编程论坛
→
新人交流区
超菜乌级的VB问题!
mcljudge
发布于 2007-10-14 09:48, 722 次点击
nResult = Shell("start Internet Explorer.exe
http://members.xoom.com/srm/
", vbHide)
这里有错吗..?
要怎么实现.一个连接,打开一个网面.
2 回复
#2
sysnakes
2007-10-14 09:58
你试试这个
你的用一个控件:LinkLabel VB05 中有,VB6.0没用过,应该也有的。
在LinkLabel中的Text属性中写上网址。
LinkLabel1.LinkVisited = True
System.Diagnostics.Process.Start ("
http://mail.163.com
")
#3
purana
2007-10-14 10:06
nResult = Shell("Explorer.exe
http://members.xoom.com/srm/
", vbHide)
这样试试.
1