Execute Sub from subform

ManuNeko

Registered User.
Local time
Today, 16:30
Joined
Aug 23, 2006
Messages
31
I have a form "Stock" on that form is a subform "DetailStock".

On Stock I have a combobox and on the onclick-event I execute a Public sub GetTotal.

I want to execute the same sub on the subform in the After-Update event.

How do I do that?:confused:
 
A procedure made Public in a form becomes a method of the form so:
Forms.Stock.GetTotal should probably work.
 
That works.

Thank you very much!
 

Users who are viewing this thread

Back
Top Bottom