This simple problem has gotten me stuck. I don't remember how to solve this!
![]()
![]()
I'm taking one number from a text box on another form and dividing that number
by the number of the current form and displaying the result in a textbox on the current
form. The problem is that I'm getting like .345 and I need/require to have numbers
starting with 1 ( whole numbers? ) ! With the data I have .### isn't a valid result it should be 1.
How do I fix this problem?
Thanks
VB Code:
Text7.Text = (Val(Form19.Text1(0).Text) / Val(Text1(0).Text))


Reply With Quote