Hey,
I'm working on a small program that has a couple global values that are floats.
I need to isolate the number before the decimal from the numbers behind the decimal.
The only solution that I've come up with is:
Parse the float to a string, use Mid$ to isolate, parse the string back to a value..
I'm curious if there is a way to handle such a task without having to parse the float to a string?