新人求助,选择安装
本帖最后由 释迦牟尼 于 2009-8-12 09:39 编辑求高人写一个安装界面,上面就两个按钮,选其中一个执行一个安装程序的安装,刚接触这个,不知道怎么写 发软件出来,或者截图看看
按钮上有快捷键吗?你这样很难帮你 这个清楚不? 本帖最后由 水木子 于 2009-8-11 18:51 编辑
要是能附上软件(超市)求代码当然更好。
随意做的一个,应该很简单很基础的。
至于软件的自动安装,建议楼主先去“自动安装”板块学习。#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("软件安装", 401, 251, 192, 124)
$Button1 = GUICtrlCreateButton("超市1(&Y)", 80, 100, 100, 30, $WS_GROUP)
$Button2 = GUICtrlCreateButton("超市2(&X)", 220, 100, 100, 30, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0,"提示","安装软件“超市1”")
Case $Button2
MsgBox(0,"提示","安装软件“超市2”")
EndSwitch
WEnd 4# 水木子
多谢了,就是要这个效果
页:
[1]