Page 1 of 1

How to add an external dll and refer. it in code module

Posted: Mon May 18, 2015 11:07 am
by thilina
How to add an external dll to a ramorex project and refer its classes in code module.

Re: How to add an external dll and refer. it in code module

Posted: Mon May 18, 2015 12:09 pm
by CookieMonster
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

Code: Select all

  using MyNameSpace.SomeNameSpace;
or

Code: Select all

 MyNameSpace.SomeNameSpace.MyFunction();
Cheers
Dan