请问怎么。。。。。。
例如
先有命令
dim a sd string
shell "a:\"
想让"a:\"中的a为a变量中的值,怎么办
例如
先有命令
dim a sd string
shell "a:\"
想让"a:\"中的a为a变量中的值,怎么办
2007-10-03 23:38
2007-10-03 23:41
2007-10-03 23:46

2007-10-03 23:55
2007-10-03 23:58
2007-10-04 00:00
那样也不行
谢谢大家了,已经哦了
代码如下
Private Sub Command1_Click()
Dim a As String
a = text1.Text
Select Case a
Case "c"
Shell "explorer c:\"
Case "d"
Shell "explorer d:\"
Case "e"
Shell "explorer e:\"
Case "f"
Shell "explorer f:\"
End Select
End Sub
学c的vb入门中

2007-10-04 00:15
[此贴子已经被作者于2007-10-4 0:19:25编辑过]

2007-10-04 00:18
2007-10-04 00:24
2007-10-04 00:29