Jump to content

Autoit Return the remainder


Recommended Posts

@AutoBert: Mod() returns the remainder of a division, which is not what the OP is asking for.

Instead, try:

$var=2.3
msgbox(0,"test",_DecimalPart($var))

Func _DecimalPart($value)
    Return $value-Int($value)
EndFunc

 

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...