By Erwin Trindler on Thursday, 11 May 2017
Posted in C# Development
Likes 0
Views 2.2K
Votes 0
Hello,

The following code should look for the reference of the given text "Reset", inside the first "Secondary Dictionary" of the project

string sText = "Reset";
Dictionary oDic = m_oEbProject.Configuration.SecondaryDictionaries[0];
string sReference = oDic.GetReference(m_oEbProject, sText);

There is a "to many data in dictionary exception" as soon as any of the other EB-Dictionaries (e.g. the project dictionary) also contains the text "Reset" .

How can I narrow the search to the oDic object only.

(Using API of EB Version 6.6.1)

Thanks
View Full Post