How do I call a VB.NET 2003 DLL Class from InfoPath 2003?

B

Bobby Ortiz

I have an InfoPath 2003 form with a submit button. When the button ic
clicked, there is a jscript code block that gets executed. I want to create
an instance of mu class and execute a method on that class.

I have tryied the following:
var converter = new ActiveXObject("TestInfoPath.Tester");
converter.Test();
 
Top