This topic created in 5110 days ago, the information mentioned may be changed or developed.
拿这段简单的ahk脚本来说
^!z::
Run, Calc.exe
WinWait, Calculator
WinGetText, text
MsgBox, The test is:`n%text%
该脚本能够获取到计算器程序中所有的winformtext,我如何能够将这些获取到的数据写入到一个指定的数据库,譬如本机的sqlite数据库中呢?
2 replies • 1970-01-01 08:00:00 +08:00
 |
|
1
xell May 6, 2012
难道不能用 Run 命令?
Run, sqlite3.exe data_file "SQL_STATEMENT"
|