Swimming_Bird Posted March 10, 2007 Posted March 10, 2007 With this code i cant get, <,>,<=, or >= to work properly with this below: $Local = RegRead ( $reg , 'li-version' ) $newversion = IniRead ( $tempini , 'info' , 'version' , 0 ) MsgBox ( 0 , $Local <= $newversion , $Local & '<=' & $newversion ) the operator returns 1 if they're equal and 0 otherwise, with <,> it always returns 0. Any idea why these variables may not be formatted properly or somehting?
MHz Posted March 10, 2007 Posted March 10, 2007 Your dealing with strings so turn them into Integers or Numbers first and then try comparing. $Local = Int( RegRead ( $reg , 'li-version' ) ) $newversion = Int( IniRead ( $tempini , 'info' , 'version' , 0 ) ) MsgBox ( 0 , $Local <= $newversion , $Local & '<=' & $newversion )
Swimming_Bird Posted March 10, 2007 Author Posted March 10, 2007 ah thanks, i wasnt able to find that int function
Swimming_Bird Posted March 10, 2007 Author Posted March 10, 2007 Int() or Number(). I used Int previously.heh, yea sorry, i deleted the post once i realized you posted edited code
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now