XXX How do I store a record I'm pointing to from one form to another? XXX

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two forms "Form A" and "Form B". Form A, has a command button that call "Form B" and closes "Form A". I need to store the current Record on "Form A" and then when I return from "Form B" I need to return to that record that I left. Remember: I closed "Form A", so I lose the record pointer. Is this possible?
 
If you need to return to Form A in the state that you left
it, why are you closing it? You could either set it to
invisible then set it back to being visible when you return
from Form B or you make Form B modal.

Hope That Helps
Gerald Stanley MCSD
-----Original Message-----
I have two forms "Form A" and "Form B". Form A, has a
command button that call "Form B" and closes "Form A". I
need to store the current Record on "Form A" and then when
I return from "Form B" I need to return to that record that
I left. Remember: I closed "Form A", so I lose the record
pointer. Is this possible?
 
Back
Top