Jump to content

Search the Community

Showing results for tags 'ubound'.

  • Search By Tags

    • ubound ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 3 results

  1. Local $okay _FileReadToArray("Okay.txt", $okay) ; read the list of names to array For $i = 1 To UBound($okay) - 1 $Read = $okay[$i] If I run this and it goes to the end of Okay.txt it returns an error. "Array variable has incorrect number of subscripts or subscript dimension range exceeded.:" s...
  2. #include <array.au3> #include <file.au3> Local $text _FileReadToArray("text.txt", $text) ; read the list of names to array Local $test _FileReadToArray("test.txt", $test) ; read the list of names to array For $u = 1 To UBound($test) - 1 For $i = 1 To UBound($text) - 1 MsgBox(4096, "Test", $text[$...
  3. #include <ColorConstants.au3>; Including required files #include <GUIConstantsEx.au3> #include <file.au3> #include <Array.au3> #include <string.au3> Example() Func Example() Local $hash Local $hashes = "hash.txt" _FileReadToArray($hashes, $hash) For $i = 1 to UBound($hash) -1 $hashcheck = $hash[$i]...
×
×
  • Create New...