View Full Version : SubForm Modules


D-Fresh
02-22-2001, 06:08 AM
Here is my situation. I have a form with two subforms on it. What I need to do is run a VBA module that is on one of the subforms from the main, parent, form. I am having problems finding the code that would reference the module on the subform to run it. Any help would be greatly appreciated. Thanks in advance.

Doug

D-Fresh
02-22-2001, 06:31 AM
Well, I finally figured it out. Thanks anyway. For anyone interested, the line I used was

Me![TaskLevel SubForm].Form.FillDefaults

where [TaskLevel SubForm] was the subform and FillDefaults was the procedure in that subform.