
leecole
Active Members-
Posts
62 -
Joined
-
Last visited
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by leecole
-
OK, I just installed the latest Beta of AutoIt and that took care of it. Thanks
-
I find a lot of GUI programs that include GDIPlus.au3, but I don't seem to have it, where do I get it. GDIPlus is included in so many programs, that a simple search is useless.
-
I haven't looked at your code, but if you use ProcessList(Name) it returns a two dimension array of names and pid, match name and ProcessSetPriority(PID). I think that should work.
-
Downloaded from this link. Got efw file which does nothing for me? http://www.autoitscript.com/forum/index.ph...amp;showfile=59
-
Works for mpg recordings, but no sound for Xvid (avi) recordings. All my video recording get encoded to Xvid.
-
SQLite semi Embedded database functionality in AutoIt
leecole replied to ptrex's topic in AutoIt Example Scripts
For the functions that I use, the current dll will probably suffice. My aplications currently use the COM solution, but avoiding having to ship, and install the dll, will make it worthwhile, switching to the SQLite functions. Thanks, -
SQLite semi Embedded database functionality in AutoIt
leecole replied to ptrex's topic in AutoIt Example Scripts
Yes, I had thought of this. Thanks, for your help, and for all your work. -
SQLite semi Embedded database functionality in AutoIt
leecole replied to ptrex's topic in AutoIt Example Scripts
Yes, that helps. So in either case, my application must:1) deliver a dll, or otherwise inform the user about where to obtain the dll and how to install it? The application will be used on other systems, and in playing around with SQL myself, I had lost track of what I installed, and why. So I wanted to understand the requirement's of either method. Thanks, and great work! -
SQLite semi Embedded database functionality in AutoIt
leecole replied to ptrex's topic in AutoIt Example Scripts
I have a real need for SQL functionality in AutoIt, and I have been reading this forum and trying to understand. I have a few questions? Quote from entry two: "the LiteX COM wrapper of http://republika.pl/roed/litex/ Download the zip file extract and copy the DLLs to your c:\windows\system32 dir. Use the command regsvr32 sqlite3.dll. or REregister after an upgrade" Question one: If I write a program using $oDb = ObjCreate( "LiteX.LiteConnection" ) It must first install and register sqlite3.dll? Is that the only dll that must be delivered and installed? Question two: If I compile my program using the latest beta, and write the program using the #include <SQLite.au3> and _SQLite_Startup() must my program still download, install, and register sqlite3.dll, or is this all taken care of? Just trying to understand exactly what is required. -
Reinstalled AutoIt and AutoIt Bata, now Run() fails!
leecole replied to leecole's topic in AutoIt General Help and Support
Yes, and no. Run() works OK now, when the program being executed is in @ScripDir, but fails when It attempts to execute a program in "Program Files". Almost every program I have, uses COM or some other freature that requires a Beta compile. Has something changed in last few betas with the RUN()???? This program's Run() statements were written years ago. The primary program it executes (ALWAYS) is AutoGK.exe which always installs itself in "Program Files". I understand how to fix this, but I feel sure that the Beta it was compiled with made a serious change to the Run(). -
Reinstalled AutoIt and AutoIt Bata, now Run() fails!
leecole replied to leecole's topic in AutoIt General Help and Support
I do not believe that the installs of AutoIt, SciTe, or AutoIt Beta, has anything to do with my problem. These AutoIt programs were developed on another system, and I have verified that they do work on other systems. I guess, the sort of help, I am looking for, is internally, what does the Run() program do? For instance BAT programs exeute external programs OK, but all of a sudden, my AutoIt programs fail. Looking for help to detrmine what is fouled up!!! -
Reinstalled AutoIt and AutoIt Bata, now Run() fails!
leecole replied to leecole's topic in AutoIt General Help and Support
I don't have the script available on this system, but ALL Autoit compiled programs fail on a Run() statement on this system. I get a AutoIt Error Line 0 (File "D:\Program Files\AutoXvid\MediaBrowser.exe") Run(@ScriptDir & "\AutoXvid.exe " & $a_file[1],"") Error: Unable to execute the external program. AutoXvid,exe is in same folder as MediaBrowser.exe. Suddenlly, ALL AutoIt compiled programs fail to properly execute a Run(). MediaBrowser is just the simpleist of them all. It just uses a FileOpenDialog to select a *.mpg and executes AutoXvid.exe passing Drive:\Path\FileName.mpg as cmdline. -
SQLite semi Embedded database functionality in AutoIt
leecole replied to ptrex's topic in AutoIt Example Scripts
Thanks, I didn't have to look far, before I found my answer. -
SQLite semi Embedded database functionality in AutoIt
leecole replied to ptrex's topic in AutoIt Example Scripts
I have seen examples of Creating and reading SQL databases, but could someone post an example of updating a single field in a multi-field record? I admit I don't know sql, but so far all my efforts have failed at updating a field's value, instead I end up adding a new record. -
http://www.bytecool.com/voices.htm
-
It works for AVI files, but not mpg files.
-
Beta compile is using non-beta include path
leecole replied to leecole's topic in AutoIt General Help and Support
Thanks -
Beta compile is using non-beta include path
leecole replied to leecole's topic in AutoIt General Help and Support
>C:\Program Files\AutoIt3\SciTe\CompileAU3\CompileAU3.exe /beta /CompileDefaults /in "F:\AutoXvid Project\source\Reminder\Remind.au3" /autoit3dir "C:\Program Files\AutoIt3\beta" >Running AU3Check...C:\Program Files\AutoIt3\SciTe\Defs\Unstable\Au3Check\au3check.dat F:\AutoXvid Project\source\Reminder\GUIConstants.au3(13,10) : ERROR: can't open include file <GUIDefaultConstants.au3> #include <GUIDefaultConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(14,10) : ERROR: can't open include file <GUIConstantsEx.au3> #include <GUIConstantsEx.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(15,10) : ERROR: can't open include file <WindowsConstants.au3> #include <WindowsConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(16,10) : ERROR: can't open include file <ComboConstants.au3> #include <ComboConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(18,10) : ERROR: can't open include file <StaticConstants.au3> #include <StaticConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(19,10) : ERROR: can't open include file <ButtonConstants.au3> #include <ButtonConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(20,10) : ERROR: can't open include file <ListBoxConstants.au3> #include <ListBoxConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(21,10) : ERROR: can't open include file <TabConstants.au3> #include <TabConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(22,10) : ERROR: can't open include file <EditConstants.au3> #include <EditConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(23,10) : ERROR: can't open include file <DateTimeConstants.au3> #include <DateTimeConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(24,10) : ERROR: can't open include file <SliderConstants.au3> #include <SliderConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(25,10) : ERROR: can't open include file <TreeViewConstants.au3> #include <TreeViewConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(26,10) : ERROR: can't open include file <ProgressConstants.au3> #include <ProgressConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(27,10) : ERROR: can't open include file <AVIConstants.au3> #include <AVIConstants.au3> ~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\GUIConstants.au3(28,10) : ERROR: can't open include file <UpDownConstants.au3> #include <UpDownConstants.au3> ~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(5,10) : ERROR: can't open include file <Memory.au3> #include <Memory.au3> ~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(230,65) : ERROR: SetError() [built-in] called with wrong number of args. If Not IsArray($items) Then Return SetError($LV_ERR, $LV_ERR,0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(297,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(302,75) : ERROR: SetError() [built-in] called with wrong number of args. If StringLen($v_find) = 0 Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(314,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(317,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(319,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(431,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(433,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(435,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(437,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(658,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(660,53) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(662,59) : ERROR: SetError() [built-in] called with wrong number of args. If $i_Item = -1 Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(682,56) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(688,56) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(690,56) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(692,56) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(694,56) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(720,55) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(726,55) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(728,55) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(730,55) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(732,55) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(735,119) : ERROR: SetError() [built-in] called with wrong number of args. If Not GUICtrlSendMsg($h_listview, $LVM_GETITEMA, 0, DllStructGetPtr($p)) Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(740,39) : ERROR: SetError() [built-in] called with wrong number of args. Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(760,68) : ERROR: SetError() [built-in] called with wrong number of args. If @error Or $v_ret = "" Then Return SetError($LV_ERR, $LV_ERR, "") ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1025,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1027,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1045,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1049,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1051,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1053,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1055,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1081,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1083,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1095,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1099,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1101,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1103,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1105,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1139,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1153,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1156,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1158,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1160,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1215,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1229,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1231,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1233,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1235,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1259,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1262,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1270,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1274,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1276,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1278,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1280,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1305,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1319,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1321,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1323,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1325,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1329,62) : ERROR: SetError() [built-in] called with wrong number of args. If (Not $ret) Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1448,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1468,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1470,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1472,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1474,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1499,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1501,58) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1512,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1516,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1518,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1520,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1522,59) : ERROR: SetError() [built-in] called with wrong number of args. If @error Then Return SetError($LV_ERR, $LV_ERR, $LV_ERR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1648,95) : ERROR: SetError() [built-in] called with wrong number of args. $i_arrange <> $LVA_DEFAULT And $i_arrange <> $LVA_SNAPTOGRID Then Return SetError(-1, -1, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(1714,102) : ERROR: SetError() [built-in] called with wrong number of args. $i_View <> $LV_VIEW_SMALLICON And $i_View <> $LV_VIEW_TILE Then Return SetError($LV_ERR, $LV_ERR, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(59,37) : WARNING: $GUI_EVENT_CLOSE: possibly used before declaration. Case $msg = $GUI_EVENT_CLOSE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(83,67) : WARNING: $ES_center: possibly used before declaration. GuiCtrlCreateLabel("Reminder Name", 10, 5, 180, 25, $ES_center) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(85,99) : WARNING: $MCS_NOTODAY: possibly used before declaration. $date = GUICtrlCreateMonthCal(@YEAR & "/" & @MON & "/" & @MDAY, 10, 55, 180, 160, $MCS_NOTODAY) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(86,58) : WARNING: $SS_RIGHT: possibly used before declaration. GuiCtrlCreateLabel("Hour:", 5, 223, 30, 25, $SS_RIGHT) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(59,37) : ERROR: $GUI_EVENT_CLOSE: undeclared global variable. Case $msg = $GUI_EVENT_CLOSE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(83,67) : ERROR: $ES_center: undeclared global variable. GuiCtrlCreateLabel("Reminder Name", 10, 5, 180, 25, $ES_center) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(85,99) : ERROR: $MCS_NOTODAY: undeclared global variable. $date = GUICtrlCreateMonthCal(@YEAR & "/" & @MON & "/" & @MDAY, 10, 55, 180, 160, $MCS_NOTODAY) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3(86,58) : ERROR: $SS_RIGHT: undeclared global variable. GuiCtrlCreateLabel("Hour:", 5, 223, 30, 25, $SS_RIGHT) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(134,56) : ERROR: _SendMessage(): undefined function. Return _SendMessage ($h_listview, $LVM_DELETEALLITEMS) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(313,59) : ERROR: _MemInit(): undefined function. Local $pMemory = _MemInit ($h_listview, $iSize, $rMemMap) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(315,34) : ERROR: _MemWrite(): undefined function. _MemWrite ($rMemMap, $pFindInfo) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(318,21) : ERROR: _MemFree(): undefined function. _MemFree ($rMemMap) ~~~~~~~~~~~~~~~~~~^ C:\Program Files\AutoIt3\Include\GuiListView.au3(434,49) : ERROR: _MemRead(): undefined function. _MemRead ($rMemMap, $pMemory, $pBuffer, $iSize) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ F:\AutoXvid Project\source\Reminder\Remind.au3 - 102 error(s), 4 warning(s) >AU3Check Ended with Error(s). >Exit code: 0 Time: 6.800 -
Beta compile is using non-beta include path
leecole replied to leecole's topic in AutoIt General Help and Support
The script never compiles. In SciTE I click on Beta compile, and I get: F:\AutoXvid Project\source\Reminder\GUIConstants.au3(13,10) : ERROR: can't open include file <GUIDefaultConstants.au3> #include <GUIDefaultConstants.au3> ~~~~~~~~~^ -
Beta compile is using non-beta include path
leecole replied to leecole's topic in AutoIt General Help and Support
I reinstalled the beta compiler before posting. -
I'm not a newbe! I have used Autoit for several years, but I apparently have a problem with my install. I attempt to do a beta compile of a script, but it complains that it cannot load #include <GUIDefaultConstants.au3> which is in my beta include. I seldom use GUIs in my own code, so apparently I have been lucky that this problem hasen't shown up before. Any ideas what I have done to cause this? Any ideas on how to correct it?
-
Highlightning AutoItSyntax in Notepad++/XML
leecole replied to jlorenz1's topic in AutoIt Example Scripts
Where is this Profile Application data/Notepad+? -
Thanks!!!