converting Word VBA up to activeX or DLL

J

jb914

I've got a VBA project that i want to convert to an ActiveX or DLL file.
any info or sites that i could reference for how to do this?
 
J

Jezebel

The least-effort method is (usually) to convert the VBA project to a VB dll
project. Forms are the main thing you have to change: Google something like
'VB forms vs UserForms' for tutorials on the differences. Most of the other
differences between VB and VBA are significant only in the other direction
(ie things that you can do in VB but not in VBA).
 
Top