How do I use Modulo in VB?
in Flash its the '%' symbol
Edit:
Anyone know what Modulo is?
Modulo(10, 3) = 1, it gets the remainder of a divison
Printable View
How do I use Modulo in VB?
in Flash its the '%' symbol
Edit:
Anyone know what Modulo is?
Modulo(10, 3) = 1, it gets the remainder of a divison
in VB6 it used to be:
Code:IntValue= 10 Mod 3
As it is in VB.NET.