dabaiyun 发表于 2010-12-13 23:06:37

这个好好的学,能让自己惊喜的

stocken 发表于 2010-12-20 21:55:36

感谢楼主,学习下

cityofthesky 发表于 2010-12-26 10:51:59

谢谢分享,对于我们新人来说,这个很实用

xmxueyuan 发表于 2011-3-28 15:29:00

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("快捷键", 216, 182, -1, -1)
$Button1 = GUICtrlCreateButton(".exe", 8, 8, 193, 49)
$Button2 = GUICtrlCreateButton(".cpl", 8, 64, 193, 49)
$Button3 = GUICtrlCreateButton(".msc", 8, 120, 193, 49)
GUISetState(@SW_SHOW)
While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $Button1
                        Run("cmd.exe");system32目录下的EXE文件可以直接调用
                       
                Case $Button2
                        Run("control desk.cpl");control(control.exe)是控制面版。 desk.cpl是调用control.exe里面的参数,也就是显示桌面属性。
                       
                Case $Button3
                        ShellExecute("gpedit.msc","组策略","","open","$SW_HIDE") ;这一句可以查看sehllExecute说明

        EndSwitch
WEnd

xmxueyuan 发表于 2011-3-28 15:30:16

#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("快捷键", 216, 182, -1, -1)
$Button1 = GUICtrlCreateButton("打开.exe文件", 8, 8, 193, 49)
$Button2 = GUICtrlCreateButton("打开.cpl文件", 8, 64, 193, 49)
$Button3 = GUICtrlCreateButton("打开.msc文件", 8, 120, 193, 49)
GUISetState(@SW_SHOW)
While 1
      $nMsg = GUIGetMsg()
      Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $Button1
                        Run("cmd.exe");system32目录下的EXE文件可以直接调用
                        
                Case $Button2
                        Run("control desk.cpl");control(control.exe)是控制面版。 desk.cpl是调用control.exe里面的参数,也就是显示桌面属性。
                        
                Case $Button3
                        ShellExecute("gpedit.msc","组策略","","open","$SW_HIDE") ;这一句可以查看sehllExecute说明

      EndSwitch
WEnd

ynkmdcs 发表于 2011-4-11 19:22:23

新手学习学习

lsszmj 发表于 2011-4-11 22:26:10

真的有点搞不懂,谢谢分享

bilinyee 发表于 2011-4-17 14:33:32

顶上去啊 。。冲

jixiren001 发表于 2011-4-18 10:31:17

仔细学习下真不错

dtj56 发表于 2011-7-6 11:41:03

回复 1# hynq2000


    学习了

asdmie01 发表于 2011-9-14 18:47:57

终于让我找到了,就是这个....

asdmie01 发表于 2011-9-14 18:48:33

真是雪中送碳啊

asdmie01 发表于 2011-9-14 18:50:47

全部收藏了,有楼主这个教程,学GUI就可以借鉴了,非常感谢

xw0714 发表于 2011-10-9 22:28:40

学习了!谢谢!

fangbaiyu 发表于 2011-10-24 14:01:00

学习了 谢谢楼主
页: 1 2 3 4 5 6 7 8 9 [10] 11 12
查看完整版本: 用au3编写网管维护工具(图文教程)