Calling a function from a form to another form

yuan22m

Member
Joined
Jul 22, 2009
Messages
8
Programming Experience
Beginner
Hi

Can someone help me how to call a function from a different form. Like the button click event. i have this scenario. I have a main form and a child form in the main form there is a navigation panel on the left side controlling the child form. What i want is if clicking the add record in my navigation panel will call a function in the child form to execute. Please help.

Thanks a lot.
 
Declare the function as Public and use a fully-qualified name to call the function, beginning with the name of the form, then a dot, then the function's name.
 
Back
Top