Cheryl,
I am developing in the Access 2002 IDE and it has a VB
backbone while incorporating the Access code when you use
wizards or if you decide to learn the code the wizards
generate for you automatically.
The problem I have is Access likes to work with existing
data in its DB so its forms work with it accordingly. I
am designing a program that inputs data into the DB so it
can utilize the Access features later in other
applications. That is why I need to use my skills in VB
programming at this stage. Once the data is in there,
Access will be perfect for report generation and record
manipulation.
Here is the segment of code that generates that pop-up
window:
strFormName = "InitialIntake_2"
DoCmd.OpenForm strFormName, , , strLinkCriteria
strFormName = "InitialIntakeForm"
DoCmd.Close acForm, strFormName
Of course, the variables are declared in the Dim. It
appears the window is not generated by the close, but on
the open of the other form.
This pop-up window is the only thing in my program I am
not able to control.