Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My app use a module1 with all variables and functions I need.
I created a formUI.dll with Forms and User Interfaces.
How can the formUI.dll share the variables and functions I have in the app module1?
Posted

1 solution

You basically have two options. Use reflection from your forms dll to access the public functions , properties etc of your module(study up Reflection - not trivial), or compile your module as a dll and import it into your forms project (probably the best option as you seem to know more about this).

Happy Coding
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900