K
Katrina
I am trying to make a set of forms that will guide a user
through adding a specific set of data. I have 4 forms, "0
form" through "3 Form"
What I would like to happen is "0 form" opens, does it's
thing, then "1 form" opens, where the new record s
created. "2 Form" Opens, and then "3 Form" should open to
the recod created by "1 Form." ("1 Form" and "3 Form" are
controled by the same table "Saved Props")
I am having a problem calling up the record created in "1
Form" Also, the new record created in "1 Form" doesn't
show up in the table until I close access and reopen. I'm
pretty sure I have to do some kind of an update, but I
can't find it in the help file.
This is my code
Dim Prop As String
DoCmd.OpenForm "1 Form", , , , acFormAdd, acDialog
Prop = Forms![1 form]![Proposal #]
DoCmd.OpenForm "2 form", , , , , acDialog
DoCmd.OpenForm "3 Form", , , "Forms![3 Form]![Prop #]
= 'Prop'", , acWindowNormal
Any help would be appreciated.
Thanks,
Katrina
through adding a specific set of data. I have 4 forms, "0
form" through "3 Form"
What I would like to happen is "0 form" opens, does it's
thing, then "1 form" opens, where the new record s
created. "2 Form" Opens, and then "3 Form" should open to
the recod created by "1 Form." ("1 Form" and "3 Form" are
controled by the same table "Saved Props")
I am having a problem calling up the record created in "1
Form" Also, the new record created in "1 Form" doesn't
show up in the table until I close access and reopen. I'm
pretty sure I have to do some kind of an update, but I
can't find it in the help file.
This is my code
Dim Prop As String
DoCmd.OpenForm "1 Form", , , , acFormAdd, acDialog
Prop = Forms![1 form]![Proposal #]
DoCmd.OpenForm "2 form", , , , , acDialog
DoCmd.OpenForm "3 Form", , , "Forms![3 Form]![Prop #]
= 'Prop'", , acWindowNormal
Any help would be appreciated.
Thanks,
Katrina