chiefywilliams
IS-IT--Management
I have a form with a subform which is in datasheet view. This is used to record archery scores and has six fields per row which will store values between 0 and 10. I have a set of buttons (10 - 0) on the main form and I would like to be able to merely click on the buttons and see the number generated in the field which has focus. Ideally, the focus would then pass to the next field and so my data entry would be very rapid. Once the last field of one record has been completed I would like the focus to pass to the first field of the next record.
So far I have been unable to work out an effective way of doing this. Tabbing normally achieves the movement between cells - is there a programmatic way of inputting a tab?
As for inputting data to the cells the following works to input a value to a specific field:
Me.frmShootingRecordSub![Arrow1] = 9
But I need a generic way of referencing a field and then transferring a value.
Help would be gratefully received
So far I have been unable to work out an effective way of doing this. Tabbing normally achieves the movement between cells - is there a programmatic way of inputting a tab?
As for inputting data to the cells the following works to input a value to a specific field:
Me.frmShootingRecordSub![Arrow1] = 9
But I need a generic way of referencing a field and then transferring a value.
Help would be gratefully received