Unlinked Form

  • Thread starter Thread starter Bryan Hughes
  • Start date Start date
B

Bryan Hughes

Hello,

What event alternative should I use on a unlinked form, for Form_Current()
and From_AfterUpdate()?

Will these still work or should I use focus events instead?

I am using them to set and check variables for history tracking.

-TFTH
Bryan
 
Bryan said:
What event alternative should I use on a unlinked form, for Form_Current()
and From_AfterUpdate()?

Will these still work or should I use focus events instead?

I am using them to set and check variables for history tracking.


If by "unlinked" you mean unbound (i.e record source is
blank), then you must have some way for users to indicate
that they're done entering data and want it to be saved.
Probably it's just a (Save?) button and you can use the
buttons Click event to run your code before saving the data.
 
Back
Top