Hello, i am in need to find a list of terms and what not for string functions for instance:
I am reading this book and he doesn't even explain what this does and it really confuses me when i have to try and figure out what the heck he is talking about but like this:
Code:
Public Function Postage(Weight as Single) as Curency

If Int(Weight) = Weight Then
   Postage = 0.32 + (0.23 * (Weight - 1))
Else
   Postage = 0.32 + (0.23 * (Int(Weight)))
End if
ENd fucntion
See i don't understand what just happened there can someone explain?
and in other situations also, i don't understand what Int is doing or Str is doing or anyt of that, does anyone have any sites that list so i may learn them? Thanks for listening

I'm gessing Int makes whatever is in weight a integer but i'm not quite sure