Sparx Systems Forum
Enterprise Architect => Automation Interface, Add-Ins and Tools => Topic started by: BJTim on March 07, 2010, 02:50:07 am
-
Is it possible to bookmark an element added with AddNew from code?
This would make it easier to find elements modified by an algorithm.
Greetings from Germany
Bernd.
-
I also am looking for a way to bookmark (little red triangle) an element using code... Can't seem to find an attribute or method...
Does anyone know WHERE this value is stored within the database if it is not available via code?
Thanks,
David
Just had to add 'little red triangle" as that was one of my 1st posts and yes of course I did not search for it 1st!
-
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.