Jump to content

Search the Community

Showing results for tags 'subscript error'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location


WWW


Interests

Found 2 results

  1. Script running good but error in line 7. When i run this script : #include <IE.au3> #include <Array.au3> $oIE = _IEAttach ("Shop") $oTable = _IETableGetCollection ($oIE, 1) $aTableData = _IETableWriteToArray ($oTable) For $inumber = 1 To UBound($aTableData) -1 $table = $aTableData[4][$inumber] MsgBox(0, "", $table) Next I got Error: array variable has incorrect number of subscripts or subscript dimension range exceeded
  2. I am coming across a certain error in a certain script #comments-start Augmented Reality Setup Pre-Alpha testing Himanshu Goel 23rd March 2012- Friday #comments-end #include <guiconstantsex.au3> #include <windowsconstants.au3> #include <gdiplus.au3> #include <array.au3> #include <winapi.au3> #include "_Fann.au3" Dim $pixelarray Local $file_in="marker.jpg" Local $file_out="detect1.jpg" _GDIPlus_Startup() _FileImageToArray($file_in, $pixelarray) for $x=1 to $width for $y=1 to $height if $pixelarray[$x][$y]="000000" Then $pixelarray[$x][$y]="FFCC33"
×
×
  • Create New...