I am using an unbound form so that the user could enter numbers, click on a button to update. My problem is that there is a text box formatted as Fixed with 1 decimal place and when I try to update it, it updates to the nearest number. How can I succeed in making it accept the number as it is?
Fixed Text Box Format Problem
Hi Christopher,
               You can check the InputMask Property setting so that it can have a limit on the character being entered you can either make it longer example : InputMask:CCCCCCC. You can also KeyPress event, in this way it can limit numbers that can be as long as 50 rather than typing in a very long character key. In this way you can have the number entered limit to a character more than what you can think as the longest number you can enter.