.msc文件
有没有什么语句可以运行.msc文件
有没有什么语句可以运行.msc文件
2006-12-07 17:15
2006-12-07 21:24
2006-12-08 15:55
2006-12-08 16:38

2006-12-08 21:50
2006-12-08 22:01
2006-12-08 23:06
5楼运行也很好:
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
ShellExecute 0&, vbNullString, "gpedit.msc", vbNullString, vbNullString, vbNormalFocus
End Sub

2006-12-08 23:09
2006-12-08 23:19