I have a VBA code as a part of a front end MS Access application. I am interested in knowing how I can call a method in this VBA code from a VB.net application of mine
I am not sure how you want to use this VBA code method. If you want to call this VBA code method like other methods or functions created in .NET assembly, it is not possible. The VBA code method is defined in Access database and Access database is not like COM server (which can be exposed for .NET application to call).
The following articles are about running code or macro in Access database.
accessing VBA code from VB.net application
Shel Blauman MS
Per our support engineer:
http://msdn.microsoft.com/library/en-us/vbaac11/html/acmthRun_HV05186408.asp
http://msdn.microsoft.com/library/en-us/vbaac11/html/acmthactRunMacro_HV05186508.asp
-brenda (ISV Buddy Team)