Hey,
I have a textbox, and im trying to create the code to calculate ' for every '100' entered in the textbox, i want + 1 to another line of code
So if someone entered 500 in the textbox i would like + 5 to be added to a seperate calculation
Ive been experimenting with creating Dims, one for the appropriate units and one for the increase
Dim Units As Decimal ' Units i would like to divide by, divide by 100?'
Dim Increase As Decimal ' Proportionate increase by 1'
Units = 100D
Increase = 1 'This is redundent right?, i could just + 1?'
Am i taking the right approach to this situation?, any help much appreciated
-Jase
I have a textbox, and im trying to create the code to calculate ' for every '100' entered in the textbox, i want + 1 to another line of code
So if someone entered 500 in the textbox i would like + 5 to be added to a seperate calculation
Ive been experimenting with creating Dims, one for the appropriate units and one for the increase
Dim Units As Decimal ' Units i would like to divide by, divide by 100?'
Dim Increase As Decimal ' Proportionate increase by 1'
Units = 100D
Increase = 1 'This is redundent right?, i could just + 1?'
Am i taking the right approach to this situation?, any help much appreciated
-Jase