faustf Posted February 4, 2015 Posted February 4, 2015 hi guy i have the script in this script i have a part of code Local $sText1 = _IEBodyReadHTML($oIE) Local $aArray_link_altrePAG = StringRegExp($sText1, '<li abp=".+?"><a href="(/b2b/Ricerche.+?r=[^"]+)', 3) For $i_LAPAG1 = 0 To UBound($aArray_link_altrePAG) - 1 $rr +=1 local $link_page2[$rr] = StringReplace($aArray_link_altrePAG[$i_LAPAG1],'amp;','') Next why tell me always : ==> Missing subscript dimensions in "Dim" statement.: local $link_page2[$rr]=StringReplace($aArray_link_altrePAG[$i_LAPAG1],'amp;','') local $link_page2[$rr]=^ ERROR i dont understund i have declared Global $link_page2[999]
Moderators SmOke_N Posted February 4, 2015 Moderators Posted February 4, 2015 You are trying to constantly declare the array by using Local inside the loop. If it's declared outside the loop, and it should be, remove the Local part from inside the loop. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
faustf Posted February 4, 2015 Author Posted February 4, 2015 o yea i am very stupid sorry for this post
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