4

I have written some Makros and Functions in VB all code works fine behind my Document. To save my code and make it available to other users I want to create a COM-add-in for VIsio. So i bought Visual Studio 2008 and I want to import my code to it.

Is it possible to include my exported .cls file to my Visual Studio COM-Add-on Projekt?

minduser
  • 51
  • 1
  • 2

1 Answers1

0

Classes in Visual Studio are the same plain text files with a .cs extension (as opposed to cls), so you could create a new class in your project, and copy over your code from VBA.

Alain
  • 26,663
  • 20
  • 114
  • 184