Jump to content

Cant figure out what's wrong with this expression


Cormin
 Share

Recommended Posts

oh, less than or equal to...:

$nCurrent = 10

For $i = 5 To 15
    ClipPut($i)
    yourcheck()
Next

Func yourcheck()
    $check = ClipGet()
    If $check <= ($nCurrent+2) And $check >= ($nCurrent-2) Then
        ConsoleWrite("inside: " & $check & @CRLF)
    Else
        ConsoleWrite("outside: " & $check & @CRLF)
    EndIf
EndFunc

output:

outside: 5
outside: 6
outside: 7
inside: 8
inside: 9
inside: 10
inside: 11
inside: 12
outside: 13
outside: 14
outside: 15

Edited by jdelaney
IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
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...