what is the best way to call after update of a combo box??

  • Thread starter Thread starter normanf
  • Start date Start date
N

normanf

Hi there,

I was wondering, what the best way is to call an after
update of a combo box event form an other form??

How can I reference is call in VBA?

Regards

Norman
 
Declare the subroutine on that control's AfterUpdate event as public, and
then call it this way:

Call Form_FormName.ControlName_AfterUpdate

That other form must be open for this to work.
 
Back
Top