P
Prohock
I have a form that the user enters an ID number into a text box called
"IDnumber". If the ID number is not in the database a demographic form
"FrmDemographic" opens to a new record so that information for the new ID
number can be entered. I would like the ID number entered in "IDnumber" to be
passed to the ID field also, "IDnumber" in the subform so that it does not
have to be entered again. Have the follow so far.
If DCount("IDnumber", "TbDemographic", stLinkCriteria) = 0 Then
DoCmd.OpenForm "FrmDemographic"
DoCmd.GoToRecord , , acNewRec
"IDnumber". If the ID number is not in the database a demographic form
"FrmDemographic" opens to a new record so that information for the new ID
number can be entered. I would like the ID number entered in "IDnumber" to be
passed to the ID field also, "IDnumber" in the subform so that it does not
have to be entered again. Have the follow so far.
If DCount("IDnumber", "TbDemographic", stLinkCriteria) = 0 Then
DoCmd.OpenForm "FrmDemographic"
DoCmd.GoToRecord , , acNewRec