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

Pages: [1]
1
General Board / Re: Component name( display) missing
« on: June 26, 2008, 09:23:35 pm »
Ha great, Simon; ;D

This does it.
An if statement was logic, but wecouldn't find out what the exact format was.
Works fine.

Thanks;

Eric ;)

2
General Board / Re: Component name( display) missing
« on: June 25, 2008, 05:13:53 pm »
And looking for "PNI" doesn't give any result.
Searching for "Instance" does.

3
General Board / Re: Component name( display) missing
« on: June 25, 2008, 04:55:15 pm »
Thanks Simon, we're getting closer.

What happens with our 'coded component' is that for example
Component "PNI" as an instance is displayed as "Instance: " and not as "Instance: PNI" as aspected.
We think we need to code this also somewhere, cfr "println", but we fail to find where?

Hope you see where we get lost?

This is our code:
shape main{

//Initialisation attributes
h_align = "center";
v_align = "center";

// Component for Access Network
if (HasTag("Domain","Access Network"))
      {
      setpencolor(0,0,0);
      }

// Component for Billing
if (HasTag("Domain","Billing"))
      {
      setpencolor(0,128,255);
    }


// Component for Business Intelligence
if (HasTag("Domain","Business Intelligence"))
      {
      setpencolor(255,128,0);
    }


// Component for Core Network
if (HasTag("Domain","Core Network"))
      {
      setpencolor(255,128,255);
    }


// Component for External Partners
if (HasTag("Domain","External Partners"))
      {
      setpencolor(255,0,0);
    }


// Component for Financial Management
if (HasTag("Domain","Financial Management"))
      {
      setpencolor(0,128,128);
    }


// Component for IT Integration
if (HasTag("Domain","IT Integration"))
      {
      setpencolor(128,0,255);
    }


// Component for OSS
if (HasTag("Domain","OSS"))
      {
      setpencolor(128,0,0);
    }


// Component for Proximus Support Systems
if (HasTag("Domain","Proximus Support Systems"))
      {
      setpencolor(255,255,0);
    }

// Component for Relationship Management
if (HasTag("Domain","Relationship Management"))
      {
      setpencolor(0,255,128);
    }


// Component for Service Delivery
if (HasTag("Domain","Service Delivery"))
      {
      setpencolor(192,192,192);
    }

// Component for Other domain
if (HasTag("Domain","Other"))
      {
      setpencolor(0,0,0);
      }


// Draw component diagram
setpenwidth(2);
rectangle(0,0,120,90);
image ("__BMB_Logo.bmp",0,0,20,18);

startpath();
moveto(105,5);
lineto(115,5);
lineto(115,30);
lineto(105,30);
endpath();
fillandstrokepath();

startpath();
moveto(100,10);
lineto(110,10);
lineto(110,15);
lineto(100,15);
endpath();
fillandstrokepath();

startpath();
moveto(100,20);
lineto(110,20);
lineto(110,25);
lineto(100,25);
endpath();
fillandstrokepath();

// Print name and status in the component element
println("#stereotype#");
println("#name#");
}




Greetings,

Eric

4
General Board / Component name( display) missing
« on: June 24, 2008, 07:17:21 pm »
Hi;

Using EA 7.0.815 (build815)

We created personnel configurated components using UML profiles which were working fine till I found out recently that when using an existing component in a diagram as instance, the component name is missing in the properties, is not displayed in component in a diagram, but still remains correctly shown in the browser. Using the link possibility the name stays. Seems that when using our personnel created components, they are loosing there display when using the instance type since general components act normal.
Do you have a direction where to look to solve this problem?

Greetings;

Eric

5
General Board / Unlock Packages
« on: March 11, 2008, 01:10:38 am »
EA 7.0 815

Hi;

During a lock procedure we killed the session.
Now wecan't unlock that package anymore.

The man who did it has highest admin rights. An other administrator can't neither with or without enabling the security.
Database is running on a common Oracle server.

Greetings,

Eric

6
General Board / Re: Diminish size repository
« on: February 29, 2008, 08:51:29 pm »
That didn't work but ( ashamed to say :-/) a colleague mentioned to check the audit  enabler and to clean the log file. This lowered the database with 90%.You can joke behind our backs now.
But in the end problem solved.

Thanks,

Eric

7
General Board / Re: Diminish size repository
« on: February 29, 2008, 06:28:52 pm »
We are using .eap Enterprise Architect  7.0.815

8
General Board / Diminish size repository
« on: February 29, 2008, 01:47:03 am »
Hi;


We have some trouble controlling the size of our repository. We reached 350Mb on our central repository and want to avoid going over 1gig in time. Running repair or compact doesn't do much.
More worrying is that crashes leave us with non used space (we think)or deleting stuff doesn't seem to lower the size, as if Sparx keeps a mirror of all lost data.
Can you advise us to keep the size under control?

Greetings,

Eric

9
General Board / Re: Stereotype Icons in UML Profiles
« on: December 20, 2007, 12:30:00 am »
You can also make your own:

shape main{

//Initialisation attributes
h_align = "center";
v_align = "center";


// Draw component diagram
setpenwidth(2);
rectangle(0,0,120,90);
image ("Logo.bmp",0,0,20,18);

startpath();
moveto(105,5);
lineto(115,5);
lineto(115,30);
lineto(105,30);
endpath();
fillandstrokepath();

startpath();
moveto(100,10);
lineto(110,10);
lineto(110,15);
lineto(100,15);
endpath();
fillandstrokepath();

startpath();
moveto(100,20);
lineto(110,20);
lineto(110,25);
lineto(100,25);
endpath();
fillandstrokepath();

// Print name and status in the component element
println("#stereotype#");
println("#name#");
}

Greetings,

Eric

10
General Board / Re: Profile (Shapescript)
« on: December 19, 2007, 06:35:27 am »
Of course, both emf, jpg and bmp images.

11
General Board / Profile (Shapescript)
« on: December 19, 2007, 05:46:23 am »
I tried to create a new profile:
shape main{

//Initialisation attributes
h_align = "center";
v_align = "center";

// Draw component diagram
setpenwidth(1);
rectangle(0,0,403,75);
image ("BGC_GROUP_Logo.emf",0,0,403,75);
}

The image emf is not recognised. BMP or JPG works only for a day or so. Most of the time the next day the image doesn't appear anymore only the empty shape.

Can you help me to get my profile stable?

Greetings,

Eric


12
Bugs and Issues / Bug?
« on: March 11, 2008, 01:02:38 am »
EA 7.0 815

Add Package
Add Diagram in that Package
Add Boundary, Appearance add Alternate image
Add New Text Element ( Change some properties)
Add Diagram under first package
All properties of Boundary and Text Element are gone

Greetings,

Eric

Pages: [1]