|
本帖最后由 dhwc 于 2011-12-26 18:13 编辑
想做个测试程序,用小键盘123分别代表高兴、生气、平和等情绪,按回车键统计按键结果,按X键退出程序,程序自动统计按键结果并输出到文本和提示框。代码如下,有两个问题:
1.按了回车键之后统计结果,再按x键不能退出程序;
2.按键的统计数字不能输出显示?
本人特菜,恳请指教,谢谢!
#include <Misc.au3>
if not FileExists ("统计结果.txt") then FileClose(FileOpen("统计结果.txt",10))
$dll = DllOpen("user32.dll")
While 1
$a = 0
$b = 0
$c = 0
Sleep ( 20 )
If _IsPressed("61", $dll) Then
$a = $a + 1
EndIf
If _IsPressed("62", $dll) Then
$b = $b + 1
EndIf
If _IsPressed("63", $dll) Then
$c = $c + 1
EndIf
If _IsPressed("0D", $dll) Then
ExitLoop
EndIf
If _IsPressed("58", $dll) Then
MsgBox(0, "统计结果", "高兴 "& $a &" 生气 "& $b &" 平和 " & $c)
$filename=fileopen("统计结果.txt",1)
FileWriteLine($filename,@YEAR&"年" & @MON & "月" & @MDAY & "日" & @HOUR & ":" & @MIN & " 统计结果:"&"高兴 "& $a &" 生气 "& $b &" 平和 " & $c)
FileClose($filename)
ExitLoop
Exit
EndIf
WEnd
DllClose($dll)
MsgBox(0, "统计结果", "高兴 "& $a &" 生气 "& $b &" 平和 " & $c)
$filename=fileopen("统计结果.txt",1)
FileWriteLine($filename,@YEAR&"年" & @MON & "月" & @MDAY & "日" & @HOUR & ":" & @MIN & " 统计结果:"&"高兴 "& $a &" 生气 "& $b &" 平和 " & $c)
FileClose($filename)
Exit |
|