Updating Another Event from another event!!!

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

Guest

i got two control source namely [fruit] and [mass]

Question:

Programmatically, how can i run the event (Mass_AfterUpdate) through the
event (fruit_AfterUpdate)?

In short, codes in fruit_AfterUpdate that runs the Mass_AfterUpdate event?

Thanks in advance

Kennykee
 
kennykee said:
i got two control source namely [fruit] and [mass]

Question:

Programmatically, how can i run the event (Mass_AfterUpdate) through the
event (fruit_AfterUpdate)?

In short, codes in fruit_AfterUpdate that runs the Mass_AfterUpdate event?

As the last statement in the fruit_AfterUpdate event code, just use the
line:

Mass_AfterUpdate

Tom Lake
 
Wow that's really simple
Thank you very very much Tom

Tom Lake said:
kennykee said:
i got two control source namely [fruit] and [mass]

Question:

Programmatically, how can i run the event (Mass_AfterUpdate) through the
event (fruit_AfterUpdate)?

In short, codes in fruit_AfterUpdate that runs the Mass_AfterUpdate event?

As the last statement in the fruit_AfterUpdate event code, just use the
line:

Mass_AfterUpdate

Tom Lake
 
Back
Top