I was trying to prevent that and having to rereference my VBA coding. If that is what I must do, then so be it but take a look at the folllwoing info and tell me what you think please?
UPDATE: By chance that my original post was unclear, this is what is happening: I have 2 tables, 2 queries, and 2 forms. Each query is based on each table and each form is based on each query. Each form is set two popup and the second form pops up from a command button on the first form. So this is how it looks:
Table 1 Info:
Name: tblBowlerInformation
Field

rimary Key: BowlerInfoID DataType:AutoNumber
Field:FirstName DataType:Text
Field:LastName DataType:Text
Table 2 Info:
Name:tblBowlerSpecs
Field:BowlerInfoID DataType:Number
Field

rimaryKey:BowlerSpecID DataType:Autonumber
Field:SpecDate DataType

ate/Time
Field:Rating DataType:Text
Relationship Info:
tblBowlerInformation.BowlerInfoID to tblBowlerSpecs.BowlerInfoID
One-to-Many Reinforced Integrity
Query 1 Info:
Name:qryBowlerInformation
Table:tblBowlerInformation
Field:BowlerInfoID
Field:FirstName
Field:LastName
Query 2 Info:
Name:qryBowlerSpecs
Field:BowlerinfoID
Field:BowlerSpecID
Field:SpecDate
Field:Rating
Form 1 Info:
Name:frmBowlerInformation
Control:BowlerInfoID
Control:FirstName
Control:LastName
Command:cmdOpenBowlerSpecs
VBA CODE

rivate Sub cmdBowlerSpecs_Click()
DoCmd.OpenForm "frmBowlerSpecs", , , "[BowlerInfoID] = " & Me.[BowlerInfoID]
End Sub
Form 2 Info:
Name:frmBowlerSpecs
Control:SpecDate
Control:Rating
When the command (cmdOpenBowlerSpec) is clicked, the correct form pops up and am able to input data.
After closing both forms and reopening frmBowlerInformation and the clicking the command button, the data that was just entered is gone. (It is not set to go to new record).
After opening the the table tble BowlerInformation and clicking on the + sign, it does not show the frmBowlerSpecs data related to that record.
However, when opening the table tblBowlerSpecs, the data is there but there is not any value in the related BowlerInfoId field which prevents it from showing in the form.
What are some factors that can be causing this. First time I have ever had this problem and have more tales, queries, and forms set up in the same manner that are doing the same thing.
As always, all help is appreciated and my thanks and appreciation in advance.