Reference field on first record ofcontinuous form

L

Louise

hi

Can anyone tell me how to reference a field in the first
record on a continuous form?

I wish to transfer data from one tab page to a subform on
another tab page but only in the first record.

Thanks

Lou
 
M

Marshall Barton

Louise said:
Can anyone tell me how to reference a field in the first
record on a continuous form?

I wish to transfer data from one tab page to a subform on
another tab page but only in the first record.


With Me.RecordsetClone
.MoveFirst
Me.subform.textbox = !somefield
End with
 
Top