На данный момент пользуюсь таким вариантом скрипта.
QUIK 8.12.0.41
QUIK_LOGIN="Логин"
QUIK_PASSW="Пароль"
function OnInit()
local luadir="x32"
if(_VERSION=="Lua 5.1")then luadir="x64-Lua51" end
if(_VERSION=="Lua 5.3")then luadir="x64-Lua53" end
if(_VERSION=="Lua 5.4")then luadir="x64-Lua54" end
package.cpath=package.cpath..";"..getWorkingFolder().."\\w32\\"..luadir.."\\?.dll";
w32 = require("w32")
CurrentProcessId=w32.GetCurrentProcessId()
QuikMainWindowHandle=GetWindowHandle("InfoClass","")
if(QuikMainWindowHandle==0) then message("Дескриптор главного окна QUIK не найден") return end
MainWindowText=w32.GetWindowText(QuikMainWindowHandle)
LoginWindowText="Идентификация пользователя"
if(string.find(MainWindowText,"version")~=nil) then LoginWindowText="User identification" end
serv_n=-1
end
function main()
is_run = true
while is_run do
if(isConnected()==0)then
if(WorkTime()==true)then QuikConnect() end
QuikLogin()
collectgarbage()
else
serv_n=-1
end
sleep(1000)
end
end
function OnStop()
is_run=false
return 100
end
function QuikConnect()
w32.PostMessage(QuikMainWindowHandle,w32.WM_COMMAND,100,0)
end
function QuikLogin()
local hWnd=GetWindowHandle("#32770",LoginWindowText)
if hWnd==0 then return end
local hServe=w32.FindWindowEx(hWnd,0,"ComboBox","")
local hLogin=w32.FindWindowEx(hWnd,hServe,"Edit","")
local nPassw=w32.FindWindowEx(hWnd,hLogin,"Edit","")
if(serv_count==nil)then serv_count=w32.SendMessage(hServe,w32.CB_GETCOUNT,0,0) end
if(serv_n>=0)then
serv_n=serv_n%serv_count
w32.SendMessage(hServe,w32.CB_SETCURSEL,serv_n,0)
end
serv_n=serv_n+1
w32.SetWindowText(hLogin,QUIK_LOGIN)
w32.SetWindowText(nPassw,QUIK_PASSW)
w32.PostMessage(hWnd,w32.WM_COMMAND,1,0)
end
function GetWindowHandle(ClassName,Text)
local hWnd=0
while true do
hWnd=w32.FindWindowEx(0,hWnd,ClassName,Text)
if hWnd==0 then break end
local ThreadId,ProcessId=w32.GetWindowThreadProcessId(hWnd)
if ProcessId==CurrentProcessId then break end
end
return hWnd
end
function WorkTime()
local GMT3=10800
dt=os.date("!*t",os.time()+GMT3)
local calendar={[20210101]=false,[20210107]=false,[20210220]=true,[20210223]=false,[20210308]=false,[20210503]=false,[20210510]=false,[20210614]=false,[20211104]=false,[20211231]=false}
local today=calendar[dt.year*10000+dt.month*100+dt.day]
if(today==false)or((today==nil)and((dt.wday==1)or(dt.wday==7)))then return false end
if(dt.hour*60+dt.min<590) then return false end
return true
end
Чтобы скрипт нашел библиотеку, создаем в папке с квиком папку w32 и распаковываем архив с библиотекой в нее
В папке w32 должны появиться подпапки x32, x64-Lua51, x64-Lua53, x64-Lua54, в каждой из них должна находиться w32.dll для нужной версии LUA
Не забываем из папки с квиком удалить файл w32.dll, если ранее вы туда его помещали.