How to add an external dll and refer. it in code module
How to add an external dll and refer. it in code module
How to add an external dll to a ramorex project and refer its classes in code module.
-
- Certified Professional
- Posts: 74
- Joined: Mon Aug 14, 2006 7:17 pm
- Location: CH
Re: How to add an external dll and refer. it in code module
Hi thilina,
you have to add the dll over references to your Ranorex Project and you have to add the name space, you want to use or access it, into your code module file. By using
or
Cheers
Dan
you have to add the dll over references to your Ranorex Project and you have to add the name space, you want to use or access it, into your code module file. By using
Code: Select all
using MyNameSpace.SomeNameSpace;
Code: Select all
MyNameSpace.SomeNameSpace.MyFunction();
Dan