Jump to content

Recommended Posts

Posted

 

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
Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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