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 - m2i7c9k

Pages: [1] 2 3 4
1
Automation Interface, Add-Ins and Tools / VBScript SaveFileDialog
« on: August 18, 2023, 11:27:00 pm »
Hi Guys,

EA is supporting VBScript OpenSaveDialog?
I can't find any ref. :/

Thanx

2
Thank you

3
Automation Interface, Add-Ins and Tools / Diagram Element Export as XMI
« on: August 16, 2023, 06:38:34 pm »
Situation:
I have an EA package called 'Catalogs' which has a static view for my elements (components, etc..)

And I want to export a diagram with elements for my client, and I don't want to export other components.

So, the question is, is there a way how to export the diagram, + diagram elements from other packages?

Thanks

4
Hi guys,

Since I installed EA 16, the IntelliSense doesn't work in the shape script.
CRTL+Space doesn't work.
Have anybody any idea if it is a bug or if there is a new shortcut (I can't find it yet),
or what's going on?

Thanx,
Mick

5
I Will :)

6
Thank You Guys,

I'll try my shape script without native; I'll see how it ends.
Mick

7
Hi, qwerty,

Thank you for sharing your thoughts. Finally, I found the problem; I changed the Win Screen Resolution DPI to 110%.
After changing the resolution to 100%, EA shows the icons OK. 

8
Hi Guys,

I don't understand the EA v16.0.1605 (x64) behavior. I have MDG Profile with the stereotype with an icon (RGB 192,192,129) for the background, but EA shows it as a black square - and I don't know why. Because 2hrs ago, it works perfectly.
I'm going slightly mad. What is causing that? I don't change anything (close EA and re-open EA).

Does anybody know a workaround, please, how prevent that EA behavior?
Thanks

Mick

9
Hi Guys,

I please for help: I have shape scrip Provided interface, and I don't know how to hide
stereotype label, if I changed exposed interface to Required :(

What I'm missing? I looked at "query" books and EA help, but I can't find the answer.

Thaks a lot
Mick

---------------------------------------------------------------------------------------------------------
shape main
{
   fixedAspectRatio = "true";
   
   if(hasproperty("parentedge","top"))
   {   
      DefSize(13,40);
      DrawNativeShape();
   }
   
   if(hasproperty("parentedge","left"))
    {
      DefSize(40,13);
      DrawNativeShape();
   }
   
   if(hasproperty("parentedge","right"))
    {
      DefSize(40,13);
      DrawNativeShape();
   }
   
   if(hasproperty("parentedge","bottom"))
   {
      DefSize(40,13);
      DrawNativeShape();
   }
   
}

shape label
{   
   if(hasproperty("parentedge","top"))
   {
      SetOrigin("N",0,0);
      Print("#name#");
   }
   
   if(hasproperty("parentedge","left"))
   {
      SetOrigin("S",0,0);
      Print("#name#");
   }
   
   if(hasproperty("parentedge","right"))
   {
      SetOrigin("S",0,0);
      Print("#name#");
   }
   
   if(hasproperty("parentedge","bottom"))
   {
      SetOrigin("S",0,0);
      Print("#name#");
   }
   
   if(hasproperty("type", "required"))
   {
      Print("#name#");   
   }
   
   /*
   if(HasProperty("Type","Required"))
   {
      Print("#name#");   
   }
   */
}

10
General Board / Re: EA 16 diagram position in browser
« on: September 02, 2022, 09:31:49 pm »
Oh, thank God - Geert :)

11
General Board / EA 16 diagram position in browser
« on: September 02, 2022, 07:20:25 pm »
Hi guys,

I can't find in the release log when Sparx changed the diagram position in the Browser window.
Till ver. 15.x.xxx the diagram was always first under the parent package, and it was (4 me) better for working with elements in the package.
In EA 16.x.xxx, the diagram is unred the sub-packages.

Is there an option for that?

Thanks,
Mick

12
Automation Interface, Add-Ins and Tools / Re: VBScript get mouse X/Y
« on: April 29, 2022, 07:14:40 pm »
Thank you Guys.

13
Automation Interface, Add-Ins and Tools / VBScript get mouse X/Y
« on: April 29, 2022, 05:00:52 pm »
Hi Guys,

it is possible in EA (VBScript) to get mouse coordinates and use them as position
for adding a new element to the diagram, pls?

Mick

14
General Board / Re: SQL fragment for element with linked document
« on: February 01, 2022, 12:58:43 am »
Thanks a lot, Geert!

I'm afraid that I'm that good at creating virtual documents. I found your page about virtual documents, but I don't understand that :/
Maybe one day :)

So long,
Mick

15
General Board / SQL fragment for element with linked document
« on: January 31, 2022, 11:59:51 pm »
Hi Guys,

I have a BPMN diagram with activities that have a linked document.
So, I created a template with the fragment that sorts the diagram element (order by t_diagramobjects.RectLeft ASC, t_diagramobjects.RectTop DESC)
but I have no clue how "print" under the element it's a linked document?

Thanx for the advice,
Mick

Pages: [1] 2 3 4