Jump to content

Recommended Posts

Posted (edited)

_FileWriteLog(@ScriptDir & "\my.log",$pop+1) does 01 01 01 01 instead of 02 03 04 05 etc.

edit fixed.

the code for those with the problem.

Global $pop = 0

_FileWriteLog(@ScriptDir & "\my.log",$pop)
$pop = $pop +1
Edited by IKilledBambi
Posted

is the variable $pop changing?

in your code the variable $pop has always same value...

For example if $pop = 0, with $pop+1 you will always have 1... unless you use something like $pop = $pop+1

I am a newbie so maybe i am wrong... just my opinion :)

Posted

Hi,

You never set the $pop to be + 1.

Should be like so:

#Include <File.au3>
    $pop = 0
While $pop <> 10
    $pop += 1
    _FileWriteLog(@ScriptDir & "\my.log",$pop)
WEnd

Cheers,

Brett

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
×
×
  • Create New...