I am sure this is very simple problem, but I am new to vb.net so am having an issue with it.
I have a Decimal variable and I need to split it into two seperate variables, one containing the integer part, and one containing the fractional part.
eg for x = 12.34 you would end up with a y = 12 and a z = 0.34
Are there any nice built in functions to do this or do I have to try and work it out manually.
Many thanks in advance