Having trouble installing latest AutoIt
trying to install the latest and it keeps throwing an error about the Shellnew folder If i dont delete the autoit folder before install i get a similar error to do with the AutoIt3.exe as well...
View ArticleAut2Exe 3.3.10.1 - BSOD on second run on XP
Windows XP SP2 Czech: Unpack http://www.autoitscript.com/autoit3/files/archive/autoit/autoit-v3.3.10.1.zip to local directory Run "\install\Aut2Exe\Aut2exe.exe" and close without any (compile) action...
View Article_ArrayDelete
I'm looking at the functions inside of Array.au3 and I came across something in _ArrayDelete that I had a question about. The section for bounds checking will change anything less than zero or...
View ArticleMsSql - database structure - dumping to a text file
Do you know maybe some way, to dump to a text file database structure. Of course, without the contents of the database. I will be grateful for your help. Best Regards. mlipok
View ArticleBest way to fix FileFindFirstFile?
This is a bug report that surprised me. http://www.autoitscript.com/trac/autoit/ticket/2453 I had no idea that the Windows FindFirstFile/NextFile functions also searched the short filename. I can...
View ArticleStatic & Global
Is possible (when Au3Check load a file, take all the names of the functions in that file, and then see if there are Gobal Static, and get to know them only in those functions that file) or to add a...
View ArticleSQLite 2013 aftermath
For you who are interessed by SQLite keeping moving forward here is what D. R. Hipp posted for your information: Here is a quick summary of the changes and enhancements to SQLite during 2013. The...
View ArticleAutoIt v3.3.11.0 Beta
File Name: AutoIt v3.3.11.0 BetaFile Submitter: JonFile Submitted: 03 Jan 2014File Category: Beta3.3.11.0 (3rd January, 2014) (Beta)AutoIt:- Fixed #2562: StringRegExp() & Null character.- Fixed...
View ArticleAutoIt v3.3.11.1 Beta
File Name: AutoIt v3.3.11.1 BetaFile Submitter: JonFile Submitted: 04 Jan 2014File Category: Beta3.3.11.1 (4th January, 2014) (Beta)AutoIt:- Fixed: Stack overflow with deep nested includes.- Fixed:...
View ArticleArray access on expression & first element
can be enabled (in Array access on expression) to read\access the first item\element directly (without specify it), example Local $aTest1[4] = [1,2,3,4], $aTest2[4] = ["One","Two","Three","Four"],...
View ArticleData type conversion in AutoIt v3.3.10.2
Compared with the version 3.3.8.1 changes not in best side :$t = DllStructCreate('uint') DllStructSetData($t, 1, 22) $var = DllStructGetData($t, 1) ConsoleWrite('-> $var = ' & $var & @CRLF)...
View ArticleTernary operator clarification ($1 = 0) ? ($b = 0) : ($b = 1)
Hi, I am trying to use the ternary operator as follows: local $b for $1 = 0 to 1 ;($1 = 0) ? ($b = 0) : ($b = 1) ; this does NOT work, should it??? $b = ($1 = 0) ? (0) : (1) ;...
View ArticleAutoIt v3.3.11.2 Beta
File Name: AutoIt v3.3.11.2 BetaFile Submitter: JonFile Submitted: 05 Jan 2014File Category: Beta3.3.11.2 (5th January, 2014) (Beta)AutoIt:- Fixed #2316: PowerPoint COM event handler initialization...
View ArticleAutoIt v3.3.10.2 : GUICtrlSetCursor vs WM_SETCURSOR
In AutoIt v3.3.10.2 disabled events WM_SETCURSOR after using GUICtrlSetCursor :AutoIt expandcollapse popup#Include <WindowsConstants.au3> #include <GUIConstantsEx.au3> $Form1 =...
View ArticleShouldn't nested array access on write work?
I thought the new feature would work on write as well, at least for instanciated variables. OTOH it's normal that it fails on expressions, IMHO. Global $a[1] = [1] Global $b[1] = [$a]...
View Articleautoit change functionality to diff lang
So I was wondering is it possible to change a functionality to a diff lang by doing something like so: Func = Qheb EndFunc = Kaw So on the body, I don't have to type: Func Test() exit EndFunc I...
View Article_DateDayOfWeek
If I may be so bold as to suggest this rewrite of this function. Func _DateDayOfWeek(Const $iDayNum, Const $iShort = 0) If $iDayNum < 1 Or $iDayNum > 7 Then Return SetError(1, 0, "")...
View ArticleDate.au3
If I may be so bold as to suggest this rewrite of this function. Func _DateDayOfWeek(Const $iDayNum, Const $iShort = 0) If $iDayNum < 1 Or $iDayNum > 7 Then Return SetError(1, 0, "")...
View ArticleRe-write of _FileWriteToLine()
Could you guys test this to see if I haven't messed anything up. It now uses the native FileReadToArray() instead of FileRead() and a regular expression.AutoIt expandcollapse popup#include...
View ArticleNoob VB question inside...
Hello. I want to find the value of this variable: LOCALE_NAME_MAX_LENGTH. So I went searching the net but can't find it. SO I thought I'd actually fire up my copy of Visual Studio Express. So I...
View Article