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 - Shaggy Man

Pages: [1]
1
Uml Process / Re: Requirement Modeling
« on: November 01, 2011, 05:23:59 pm »
You can be obtained by following steps.

1. Create package in Project Browser
2. Create diagram in the package
3. Create requirements on the diagram
4. Create new diagram
5. Drag and drop the package(created in step 1) to the new diagram

2
How about using EA.exe.config for the name of app.config instead of MyAddIn.dll.config?

or

Install .Net 3.5 Library ?

4
I think plugin user maybe not read this board.
I think API user ( plugin creater) are reading this board.

Moreover, I think you are better to actually try the evaluation version in third party extensions page.

5
Automation Interface, Add-Ins and Tools / Re: Export diagram to image
« on: February 06, 2012, 05:54:13 pm »
Get Project interface(using Repository.GetProjectInterface()) and
use Project.PutDiagramImageToFile().

see www.sparxsystems.com/uml_tool_guide/sdk_for_enterprise_architect/project_2.htm


7
Automation Interface, Add-Ins and Tools / Re: Save Linked Document to File
« on: December 15, 2011, 05:26:53 pm »
Is help you following EA API?

Element.SaveLinkedDocument()
Element.GetLinkedDocument()

8
Only about 4

In the "EA User Guide",[ch12288]described by the VisualBasic6 type.
in the COM API, described by the COM type.

VB long = COM int = 4 byte(32bit) integer.

9
Automation Interface, Add-Ins and Tools / Re: RunHTMLReport
« on: October 11, 2011, 11:50:29 am »
You can see and get GUID in UI.

See in Properties sub windows | Project | GUID.
Get at Project Browser context menu | Copy Reference | Copy Node GUID to Clipboard.


10
Maybe useful Repository.LibraryVersion .

11
Automation Interface, Add-Ins and Tools / Re: Importing Values to Tags
« on: September 15, 2011, 01:19:08 pm »
Might help you RaQuest(http://www.sparxsystems.com/products/3rdparty.html#RaQuest).

RaQuest's User Defined Attribute store EA Requirement tagged value.
And RaQuest can import CSV file with User Defined Attributes.

13
I found VC6 code to add bookmarks in the following URL sample.
http://www.raquest.com/products/external_interface.htm

Write only the essential code ...

> char sql[256];
> sprintf(sql, "update t_object set tagged = 1 where object_id = %d", pConnector->ClientID);
> HRESULT result;
> result = m_pRepository->Execute(sql);

Glad that helps.

Pages: [1]