请问我想在VB中单击某个摁钮后打开某个文件夹(最好是当前程序所在的文件夹),我该怎么写代码?
他的意思是从Explorer中打开吧
Option Explicit
Private Sub Command1_Click() Shell "explorer " & App.Path, vbNormalFocus End Sub
Shell "explorer " & App.Path, vbNormalFocus
好像是打开到VB的文件夹
有没有打开到桌面,或我的电脑的代码呀