想问一下这个界面是用做什么做出来的?怎么做?
本帖最后由 dongribo 于 2010-4-27 10:05 编辑想问一下这个界面是用做什么做出来的?怎么做?是用KODA做的吗?如下图: 根据标题搜索。 表达不清,不知道你想问什么? 多看看帮助 是KODA做的,不过加载了皮肤。 回复 5# lanfengc
用KODA做好后如果我想添加一个软件如何添加啊? 回复 6# dongribo
FileInstall 本帖最后由 dongribo 于 2010-4-27 11:14 编辑
回复 7# lanfengc
不会用FileInstall,你能帮我弄一下吗?
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = Guicreate("Form 1", 400, 400, -1, -1)
$Button1 = GuiCtrlCreateButton("局域网内进行时间同步", 80, 120, 210, 140)
GuiSetState(@SW_SHOW)
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
EndSwitch
Wend
运行这个程序: #include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
;假如你的1.RAR里的文件是1.EXE,放在与这个脚本相同的目录里,那么照下面的方法操作。
FileInstall(@ScriptDir&"\1.exe",@TempDir&"\1.exe")
;上面这句的意思是:将脚本目录里的1.Exe安装到临时目录里的1.exe
$Form1= Guicreate("Form 1", 400, 400, -1, -1)
$Button1= GuiCtrlCreateButton("局域网内进行时间同步", 80, 120, 210, 140)
GuiSetState(@SW_SHOW)
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
;在这里调用@临时目录下的1.exe。
@TempDir&"\1.exe"
EndSwitch
Wend AU3 可以做出来。
上边那个是加过皮肤的。很早就有人发出来了。 是加载皮肤的效果 回复 9# lanfengc
不行啊不成功弹出这个窗口 本帖最后由 dongribo 于 2010-4-27 16:06 编辑
回复 9# lanfengc
得到lanfengc 的帮助,我用另一种方法解决了。谢谢!!!
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = Guicreate("Form 1", 400, 400, -1, -1)
$Button1 = GuiCtrlCreateButton("局域网内进行时间同步", 80, 120, 210, 140)
GuiSetState(@SW_SHOW)
While 1
$Msg = GUIGetMsg()
Switch $Msg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
runwait(@ScriptDir & "\局域网时间同步软件\局域网时间同步软件.exe")
EndSwitch
Wend
KODA做的还加载了皮肤. 不知道到这个皮肤在哪里可以下载
页:
[1]