Custom Query
Results (169 - 171 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3785 | Fixed | AU3Check ended.rc:-1073740791 | Jos | anonymous |
Description |
https://www.autoitscript.com/forum/topic/204016-au3check-endedrc-1073740791-many-include/ >"C:\Program Files (x86)\AutoIt3\SciTE\..\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /Prod /AU3check /in "C:\Github\proyect\Main.au3" +>15:27:08 Starting AutoIt3Wrapper (19.1127.1402.0} from:SciTE.exe (4.2.0.0) Keyboard:0000080A OS:WIN_10/ CPU:X64 OS:X64 Environment(Language:080A) CodePage:0 utf8.auto.check:4 +> SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE UserDir => C:\Users\fabri\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper SCITE_USERHOME => C:\Users\admin\AppData\Local\AutoIt v3\SciTE >Running AU3Check (3.3.14.5) from:C:\Program Files (x86)\AutoIt3 input:C:\Github\proyect\Main.au3 !>15:27:17 AU3Check ended.rc:-1073740791 +>15:27:17 AutoIt3Wrapper Finished. >Exit code: 0 Time: 9.868 https://www.autoitscript.com/forum/applications/core/interface/file/attachment.php?id=65989 |
|||
#2731 | Fixed | AU3Check error on objects that contain properties with name (.To) | Jpm | cory.r.stein@… |
Description |
We have a function that uses the object CDO.Message. The below simplified snippet of code fails to compile. Looks like this might have been addressed in an earlier version, but have recently resurfaced. Not sure if (http://www.autoitscript.com/trac/autoit/ticket/2113) is similar, but we are holding off on using the latest due to this issue. Local $objEmail = ObjCreate("CDO.Message") $objEmail.From = '"Test" <Test>' $objEmail.To = 'Test' AU3Check fails to pass on the .To property, which I assume is because its a reserved keyword in the AI engine or something |
|||
#2141 | Fixed | AU3Check keyword #IgnoreFunc causing error | Valik | Beege |
Description |
The following script causes an error: #include <GuiListView.au3> #include <SQLite.au3> Output: C:\Program Files (x86)\AutoIt3\Include\SQLite.au3(2,13) : ERROR: missing separator character after keyword. #IgnoreFunc __SQLite_Inline_Version ~~~~~~~~~~~~^ |