Basic vba help

Mcgrco

Registered User.
Local time
Today, 12:30
Joined
Jun 19, 2001
Messages
118
I have had to put some code in the detail part of a form. It worked fine but I need it to do some more calculations. How do I go about getting two differnt pieces of code to run in the detail_format part od the form.
thanks
 
If you are asking how do you get a proceedure (Function/Sub) to run from the Detail_Format Event then the Answer is any of the following:

Functions:
----------
Call YourFunctionName()

or

x = YourFunctionName()

Subs:
-----
Call YourSubName()

or

YourSubName()
 
thanks .
 

Users who are viewing this thread

Back
Top Bottom