Jump to content



Photo

[resolved] @CRLF ERROR: undefined macro


  • Please log in to reply
4 replies to this topic

#1 wuschelbeutel

wuschelbeutel

    Seeker

  • Active Members
  • 20 posts

Posted 25 May 2012 - 07:41 AM

This is where it errors out (there is a lot of other code in this .au3):

Local $file = FileOpen("dataset.txt", 1) If $file = -1 Then     MsgBox(0, "Error", "Unable to open file.")     Exit EndIf For $j = 0 to 8 Step +1    FileWrite($file, $Ratio[@j])    FileWrite($file, "" & @CRLF) Next FileClose($file) ; the array has 9 elements that are defined integers


This is where it works:

Local $file = FileOpen("test.txt", 1) If $file = -1 Then     MsgBox(0, "Error", "Unable to open file.")     Exit EndIf For $var2 = 0 to 200 Step +1    FileWrite($file, Random(0,1))       FileWrite($file, "" & @CRLF) Next FileClose($file)


Any ideas on what could be wrong?

Edited by wuschelbeutel, 25 May 2012 - 07:50 AM.






#2 Manadar

Manadar

    Taking a REST.

  • MVPs
  • 10,714 posts

Posted 25 May 2012 - 07:44 AM

@j

#3 czardas

czardas

  • Active Members
  • PipPipPipPipPipPip
  • 5,060 posts

Posted 25 May 2012 - 07:46 AM

What value is $Ratio[@j] ?

Edit LOL beaten to it again.

Edited by czardas, 25 May 2012 - 07:48 AM.


#4 wuschelbeutel

wuschelbeutel

    Seeker

  • Active Members
  • 20 posts

Posted 25 May 2012 - 07:50 AM

thx. i kept looking at the wrong line because i doubleclicked on the error line and it highlighted the second @

#5 GEOSoft

GEOSoft

    Sure I'm senile. What's your excuse?

  • MVPs
  • 10,563 posts

Posted 25 May 2012 - 04:35 PM

Just as a side note; the Step +1 is not required. That's the default in a For/Next loop.
GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!"




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users