VB中的小问题
Shell在VB代码中是什么意思有什么作用?
补充:Line Input #1, thename$
Shell thename$
这个是什么意思?
Shell在VB代码中是什么意思有什么作用?
补充:Line Input #1, thename$
Shell thename$
这个是什么意思?
答案:shell可以调用系统命令,类似C里的system()'Line Input #1, thename$ 读入当前打开文件的一行到字符变量thename$中
'Shell thename$ 执行命令运行某一个程序
Option ExplicitPrivate Sub Command1_Click()
Shell "regedit.exe" '示例:打开注册表编辑器
End Sub运行