K krester Registered User. Local time Today, 22:44 Joined Aug 29, 2007 Messages 31 Feb 24, 2010 #1 How can I call the same function from some forms?
DCrake Remembered Local time Today, 20:44 Joined Jun 8, 2005 Messages 8,620 Feb 24, 2010 #2 Place the function you want to use throughout the app in a standard module not in a form module. Do not call the module the same name as the function Declare the function as Public Code: Public Function Foo() End Function
Place the function you want to use throughout the app in a standard module not in a form module. Do not call the module the same name as the function Declare the function as Public Code: Public Function Foo() End Function
K krester Registered User. Local time Today, 22:44 Joined Aug 29, 2007 Messages 31 Feb 24, 2010 #3 Dear David, Wow... it was quickly. Thanks a lot!