Code: Select all
myfunction = function(hdl)
if __Window.IsWindow(hdl) then
return true
else
return false
end
end;
Seems __Window is not loading so the Windows functions don't work.
Code: Select all
myfunction = function(hdl)
if __Window.IsWindow(hdl) then
return true
else
return false
end
end;