|
关于RUN运行程序后,怎么将文件放到一起,成为一个文件
代码:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("网络科技 V1.0", 310, 401, 208, 156)
$Pic1 = GUICtrlCreatePic("C:\WINDOWS\system32\oemlogo.bmp", 0, 0, 308, 68, BitOR($SS_NOTIFY, $WS_GROUP, $WS_CLIPSIBLINGS))
$Label1 = GUICtrlCreateLabel("南山网络技术论坛(www.nsxp2.cn)", 104, 376, 176, 17)
$Button1 = GUICtrlCreateButton("P2P屏蔽", 8, 72, 131, 25, 0)
$Button2 = GUICtrlCreateButton("ICO图标制作", 165, 72, 131, 25, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Form1
Case $Button1
Run("p2p.exe")
Case $Button2
Run("ico.exe")
EndSwitch
WEnd
问题:编译脚本后,如何将p2p.exe ico.exe 生成一个文件.如:优化.exe 不管复制到那里,优化.exe 也有p2p.exe ico.exe 这2个文件. |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?加入
×
|