Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - visnak

Pages: [1]
1
Automation Interface, Add-Ins and Tools / Re: Search addin
« on: January 14, 2009, 10:47:03 pm »
I think that You must use component name
Do You try move findAllImported to EAPlugin.cs?

2
Automation Interface, Add-Ins and Tools / Re: Search addin
« on: January 14, 2009, 09:29:17 pm »
If You have EA AddIn named "EAPlugin"
remove findAllImported to EAPlugin.cs
and call this method by EAPlugin.findAllImported in EA Search

3
Automation Interface, Add-Ins and Tools / Re: Search addin
« on: January 14, 2009, 08:37:30 pm »
You have bad declaration
public static bool findAllImported(EA.Repository rep,string searchString,ref string XML)

You must use
public bool findAllImported(EA.Repository rep,string searchString,out string XML)

4
Automation Interface, Add-Ins and Tools / Re: Search addin
« on: January 11, 2009, 10:13:26 pm »
1) declare your method like
public Boolean SearchView(EA.Repository Rep, String SearchText, out String XMLResults)

2) string XMLResults has different structure then return Repository.SqlSearch method

3) for right format XMLResults string find page "XML Format (Search Data)" in EA user guide
 :)

Pages: [1]