Closing Open Bound Forms

  • Thread starter Thread starter robin9876
  • Start date Start date
R

robin9876

In an Access 2000 database, that has Form A (bound form) which after
certain data items have been entered Form B (unbound form is
displayed).

While in Form B is it possible to close Form A without saving the
record and close From B?
 
You mean this kind of thing?

If CurrentProject.AllForms("FormA").IsLoaded Then
With Forms("FormA")
If .Dirty Then
.Undo
End If
End With
DoCmd.Close acForm "FormA"
End If
DoCmd.Close acForm, Me.Name
 
Allen, that worked. We did have a few issues with closing the form due
to some other processing but this was resolved.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top