Page 1 of 1

Added new reference dll

Posted: Wed Jan 27, 2016 1:28 pm
by singhkvishal
Hi team,

I have added a new reference dll file on my renorex test suit. The reference name is "TestStak.White" which is use to identify the windows object and I am able to view the function on this dll.getting the error while running the code
Can someone please help me to solve this issue?

Re: Added new reference dll

Posted: Thu Jan 28, 2016 1:16 pm
by krstcs
If you read the error message it tells you that you need to add TestStack to your using directives.

At the top of the file, add 'using TestStack;'. Then, you should be able to reference White without using 'TestStack.White', and you shouldn't get those errors anymore.