本帖最后由 vipanjintian 于 2011-3-8 23:44 编辑
我编写好的脚本,用X64运行比用X86运行慢半拍,而且我发现一个问题,用X64编译脚本出错,编译后不能运行,X86则可以正常编译,也可以正常运行.不知是什么原因?版本为3.3.61#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Button1 = GUICtrlCreateButton("Button1", 160, 88, 177, 49)
$Button2 = GUICtrlCreateButton("Button2", 160, 160, 217, 65)
$Button3 = GUICtrlCreateButton("Button3", 104, 240, 369, 73)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
经过无限次的测试,原来我代码完全没有代码,以上的是由KADO生成的窗体代码,我用X64编译根本运行不了,用X86运行才可以编译.... |