|
本帖最后由 wu5cheng3 于 2018-8-17 13:54 编辑
[AU3]
#NoTrayIcon
#Region ;**** 由 AccAu3Wrapper_GUI 创建指令 ****
;#AccAu3Wrapper_UseX64=y
#AccAu3Wrapper_UseX64=n
#EndRegion ;**** 由 AccAu3Wrapper_GUI 创建指令 ****
#include <GUIConstantsEx.au3>
GUICreate('测试', 250, 150, -1, -1)
$bj = GUICtrlCreateButton('便 笺1', 30, 40, 55, 55)
$bj2 = GUICtrlCreateButton('便 笺2', 100, 40, 55, 55)
$bj3 = GUICtrlCreateButton('便 笺3', 170, 40, 55, 55)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
Exit
Case $msg = $bj
ShellExecute("StikyNot.exe")
Case $msg = $bj2
ShellExecute("c:\windows\system32\StikyNot.exe")
Case $msg = $bj3
ShellExecute(@WindowsDir & "\System32\StikyNot.exe")
EndSelect
WEnd
[/au3]
win7_x64系统环境,
当 #AccAu3Wrapper_UseX64=n (输出为x86程序)时,无法打开 ShellExecute("StikyNot.exe") 程序,
必须使用 #AccAu3Wrapper_UseX64=y (输出为x64程序)时,才能正常打开,但是我想用输出程序为x86位的,有办法可以打开这个么“StikyNot.exe”???
|
|