Kidney Posted January 20, 2014 Posted January 20, 2014 Just downloaded the latest autoit from here: http://www.autoitscript.com/site/autoit-script-editor/downloads/ Trying to use a UDF that was written some time ago that calls the function _ArrayCreate in the Array.au3. The Array.au3 that was included in the latest download apparently doesnt have it? Where can i get the older verision of Array.au3 that has the function _ArrayCreate???
Solution michaelslamet Posted January 20, 2014 Solution Posted January 20, 2014 From array.au3 version 3.8.8.1 =========================================================================================== ; Name...........: _ArrayCreate ; Description ...: Create a small array and quickly assign values. ; Syntax.........: _ArrayCreate ($v_0 [,$v_1 [,... [, $v_20 ]]]) ; Parameters ....: $v_0 - The first element of the array ; $v_1 - [optional] The second element of the array ; ... ; $v_20 - [optional] The twenty-first element of the array ; Return values .: Success - The array with values ; Author ........: Dale (Klaatu) Thompson, Jos van der Zande <jdeb at autoitscript dot com> - rewritten to avoid Eval() errors in Obsufcator ; Modified.......: Ultima ; Remarks .......: Arrays of up to 21 elements in size can be created with this function. ; Related .......: ; Link ..........: ; Example .......: Yes ; =============================================================================================================================== Func _ArrayCreate($v_0, $v_1 = 0, $v_2 = 0, $v_3 = 0, $v_4 = 0, $v_5 = 0, $v_6 = 0, $v_7 = 0, $v_8 = 0, $v_9 = 0, $v_10 = 0, $v_11 = 0, $v_12 = 0, $v_13 = 0, $v_14 = 0, $v_15 = 0, $v_16 = 0, $v_17 = 0, $v_18 = 0, $v_19 = 0, $v_20 = 0) Local $av_Array[21] = [$v_0, $v_1, $v_2, $v_3, $v_4, $v_5, $v_6, $v_7, $v_8, $v_9, $v_10, $v_11, $v_12, $v_13, $v_14, $v_15, $v_16, $v_17, $v_18, $v_19, $v_20] ReDim $av_Array[@NumParams] Return $av_Array EndFunc ;==>_ArrayCreate
jchd Posted January 20, 2014 Posted January 20, 2014 It's deprecated, for good reasons. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
Kidney Posted January 20, 2014 Author Posted January 20, 2014 It's deprecated, for good reasons. it looks like it. I just needed to see what that function was originally made to do. i can rewrite the UDF im using so it doesnt use this function anymore.
jchd Posted January 20, 2014 Posted January 20, 2014 That is probably the best way to go. Notice that with the latest release you don't have to specify any dimension of an array when it is initialized, even with incomplete init: #include <Array.au3> Local $aSample = [ ['a'], [1, 2], [True, False, "Don't know"] ] _ArrayDisplay($aSample) This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now