I have a subform that shows images (0, 1, 2, ...etc) linked to a main form. I would like to display the current record number of total number of records for each linked record on the main form. (ie "Image" X " of " Y).
My problem is that as I move between records on my main form, the record information on the subform does not change. I set the subform to NOT show the navigation button (I put command buttons on the form with that functionality). I have tried:
Initially:
lblRecords.capt ion = 1 'increment by +1 or -1 if me.recordset.mo venext or moveprevious
lblTotalRecords .caption = me.recordset.re cordcount
The values get really messed up as I navigate through the sub-form and main form. I am very frustrated because I thought this would be simple.
I am a VBA neophyte, so please use small words. :-)
Thanks in Advance
My problem is that as I move between records on my main form, the record information on the subform does not change. I set the subform to NOT show the navigation button (I put command buttons on the form with that functionality). I have tried:
Initially:
lblRecords.capt ion = 1 'increment by +1 or -1 if me.recordset.mo venext or moveprevious
lblTotalRecords .caption = me.recordset.re cordcount
The values get really messed up as I navigate through the sub-form and main form. I am very frustrated because I thought this would be simple.
I am a VBA neophyte, so please use small words. :-)
Thanks in Advance
Comment