AndrewMozley
Programmer
There is a data entry form with a grid. One of the columns contains a textbox (30 chars). Usually whatever the user enters is saved in a column of the Recordsource cursor. The user enters a description into this textbox which might include a number of hours.
For example : “Editing chapter 2. 3 1/2 hrs 12-Nov-2021”
Can this be converted at the time of data entry so that the fractional numbers of hours, entered as fractional quantities : 1/2, 1/4, 3/4 are converted into the the single characters : ½ , ¼, ¾? Have other users had the need to do this, and how have they achieved the result?
In the example above it would be good if the resultant textbox contained this value :
Thanks. Andrew Mozley
For example : “Editing chapter 2. 3 1/2 hrs 12-Nov-2021”
Can this be converted at the time of data entry so that the fractional numbers of hours, entered as fractional quantities : 1/2, 1/4, 3/4 are converted into the the single characters : ½ , ¼, ¾? Have other users had the need to do this, and how have they achieved the result?
In the example above it would be good if the resultant textbox contained this value :
Code:
Mygrid.column2.text1.value = “Editing chapter 2. 3½ hrs 12-Nov-2021”
Thanks. Andrew Mozley