ledigeine Posted June 26, 2012 Share Posted June 26, 2012 Ok so I found this _ArrayCompare deal and have used it, what im doing is building two arrays. So one is based on a folder structure, a folder i have has folders named 9.1, 9.2, 9.3, 9.4 ect. I format those to show up as 91, 92, 93, 94. The other array is reading from an XML file, each node in a section is named v91, v92, v93, v94 ect. I format those down to just 91, 92, 93, 94. So the folder array will change, if a new folder is added like "9.5" then the _arraycompare will display that. My issue is, what is the best way to detect the change? (id think checking [0] and if its = to 1) Then for the array compare the new item will show as 1 the others will be 0. So then how would i check each array item until the end of the array for any 1's? Link to comment Share on other sites More sharing options...
ledigeine Posted June 26, 2012 Author Share Posted June 26, 2012 Heres some shots of the arrays for example. XML array: Folder array: XML compared to folders: Folders compared to xml: Link to comment Share on other sites More sharing options...
nitekram Posted June 26, 2012 Share Posted June 26, 2012 Use Ubound() to get how many indexes are in the array and then use For/Next to go through each one and compare - if I understand what you want, this will work. ledigeine 1 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator Link to comment Share on other sites More sharing options...
ledigeine Posted June 27, 2012 Author Share Posted June 27, 2012 Ahh yes i think i get the concept for that, i knew i heard of something like for/next i just couldnt remember the name. I was thinking... do while but i knew that wasnt right. Thank you sir. Link to comment Share on other sites More sharing options...
nitekram Posted June 27, 2012 Share Posted June 27, 2012 Do/While will also work, but the norm is to use For/Next For $x = 0 To Ubound($arrayName) - 1 ; because the array index starts at ZERO If $arrayName[$x] = 1 then ; your code here EndIf Next 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator Link to comment Share on other sites More sharing options...
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