M Mcgrco Registered User. Local time Today, 21:49 Joined Jun 19, 2001 Messages 118 Oct 16, 2001 #1 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
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
Travis Registered User. Local time Today, 13:49 Joined Dec 17, 1999 Messages 1,332 Oct 16, 2001 #2 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()
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()
M Mcgrco Registered User. Local time Today, 21:49 Joined Jun 19, 2001 Messages 118 Oct 17, 2001 #3 thanks .