Jump to content

Adding plus 1 to a variable


Recommended Posts

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 :)

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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