Jump to content

I think its a Bounds issue?


Recommended Posts

So i just got back into autoit and was breaking down another persons script to understand it and relearn how to write along with rewriting my own script... i came across the same error when i ran the original script, which im confused how it worked for them and not working for me....

I figure theres no need to post the rest of the script cause i can put this into a file alone and it errors just the same...

Global $a = ObjCreate("Scripting.Dictionary")

$a.Add(393704537, "Studded Leather Armor")

$a.Add(2326837633, "Drake Hide Armor")

.....

The studded leather armor had 1 more character added to it and this caused an error on that line as well... after playing with it for quite a long time i finally figured out that by removing 1 char it would pass and move onto the next line where the char lengh was longer by 1 again and returns error...

Any idea why they could and i cant? i tried to "compile as 64bit" and that didnt accomplish anything heh

really sucks cause im using PixelChecksums and trying to do a If $a.Exists($checksum) and i cant do that with the length of the characters... i dont understand how someone else was able to and i cant find any information on the topic... drivin me up the wall as you can see in my repetition heh..

if i swap them around, text and number, i think it accepts it (or possibly i just gave up and put it in "") but i definately was able to get the longer number as a string but then $a.Exist($checksum) doesnt ever return sucess

i had a feeling it might have something to do with the way the variable is declared or the $ being changed or something but i couldnt find any information on that either

god i love learning this stuff, spent about 48hrs straight without food or sleep relearning the language breaking down the script one line/function at a time and rewriting my own, i LOVE to learn this stuff but i hate when i run into an error i cant find any documentation on heh

Welp thank you VERY much for your time and help

have a good one!

Link to comment
Share on other sites

Don't have much knowledge on COM but looking at http://msdn.microsoft.com/en-us/library/x4k5wbx4(v=vs.85).aspx, I think $a.Exist($checksum) should be replaced with $a.Exists($checksum)

----------------------------------------

:bye: Hey there, was I helpful?

----------------------------------------

My Current OS: Win8 PRO (64-bit); Current AutoIt Version: v3.3.8.1

Link to comment
Share on other sites

Ober,

Please read forum rules again.

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 here
RegExp tutorial: enough to get started
PCRE 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)

Link to comment
Share on other sites

  • Moderators

Ober,

jchd has it - please read those rules before you post again. :oops:

Thread locked.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...