Jeanne said:
Trying to construct a form where the user can click on a datasheet row,
the
application then takes the user to fill detail about the individual
record.
How can I do that?
Put some code in the form's Current event to open up your data entry form
(untested air code follows):
DoCmd.OpenForm "frmDataEntry",,,"[ID]=" & Me.txtID
This assumes you have a text box called "txtID" on your main form bound to
a numberic. Also I have guessed the number of commas required for the
"where" argument but intellisense will guide you.
All that said I'm not at all sure that you *need* such functionality but
then you haven't given much to go on.
Keith.
www.keithwilby.co.uk