Book a Demo

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

Pages: [1] 2
1
General Board / Re: No current record
« on: October 14, 2004, 03:17:29 pm »
Do you mean

Tools / Manage .EAP File / Repair .EAP File?

Thanks,

::MikiNanuk

2
General Board / No current record
« on: October 13, 2004, 05:15:03 pm »
When browsing a sequence diagram that I haven't looked at for a while, I get tons of popup windows:

DAO.Recordset [3021]
No current record.

What's up with that?  How do I fix it?

Thanks,

::MikiNanuk

3
General Board / Re: Unwanted private variables
« on: September 23, 2004, 08:05:06 am »
These classes form our data access layer.  In some of them, we construct a SQL command object that can be quite complex, so there are lots of fragments defined as private const in the class, e.g.

private const string WHERE_IF_CONDITION_A_TRUE = "SOMEVAL >= @someval"

::MikiNanuk

4
General Board / Re: Unwanted private variables
« on: September 17, 2004, 01:31:59 pm »
We still want to show private variables that are an important part of the class design (such as the ones that provide the storage for properties), just not certain supporting private variables.

If we could specify not to show "private const" vs. "private" that would solve our issue.

::MikiNanuk

5
General Board / Unwanted private variables
« on: September 14, 2004, 09:56:41 am »
When we sync up our C# code with the EA model (using MDG Link), a lot of private const variables get pulled into the model.  This clutters the model without adding value.  Is there a way to prevent certain variables (or methods for that matter) from becoming part of the model?

::MikiNanuk

6
General Board / Re: Amazing disappearing reappearing AddressId
« on: September 20, 2004, 03:24:37 pm »
Anyone know what I need to do to fix this issue?

7
General Board / Re: Amazing disappearing reappearing AddressId
« on: September 17, 2004, 01:37:14 pm »
Here's what I do:

- Right click on Address in the Project View
- Select Properties
- Select the Detail tab
- Click on the Attributes... button
- There is no mention of addressId
- Repeat, but this time click on the Operations... button
- There is no mention of AddressId

Where exactly do I need to clear out "AddressId" from my model?

Thanks,

::MikiNanuk

8
General Board / Amazing disappearing reappearing AddressId
« on: September 16, 2004, 02:20:43 pm »
Hi,

We have a class called Address that we modelled in EA.  The class originally had a property called AddressId.  We subsequently changed the property to just Id (after all, Address.AddressId is pretty redundant  ;D ).

We removed AddressId from both the model and the C# code.  Trouble is, every time we sync the projects (MDG Link), we end up with the following in Address.cs:


public long AddressId {
   get{
       return <unknown>;
   }
   set{
       <unknown> = value;
  }
}

The desired property Id is also present, both in code and in the model.

How can we get rid of the amazing disappearing reappearing AddressId property for good?

::MikiNanuk

9
General Board / Attributes galore!
« on: September 16, 2004, 02:31:22 pm »
Every time we sync our object model with our C# code, it seems that attributes are being added again (and again, and again).  So for example we get something like this:

           [Serializable()]
     [Serializable()]
     private class Criteria

where one Serializable() attribute is plenty, and in fact all that the compiler can handle.

Are we doing something wrong?  Is there some way to fix this?

::MikiNanuk

10
General Board / New license key does not work
« on: August 31, 2004, 11:54:32 am »
Hi all,

We just purchased 10 new licenses of EA, and got the confirmation email from share-it.

I copied the first registration key in the list into the clipboard, went into EA's Help menu and selected "Register and Manage License Key(s)".  When I select that, I get the "Upgrade Key" dialog box.  That dialog box informs me that I'm still on the 30 day trial (though I had entered a trial extention key if that matters...) and affords me the opportunity to enter an Upgrade Key.  I paste in the key from share-it!, press OK and... nothing happens!  The dialog box goes away, but if I open it again, it says I'm still on the 30 day trial....

How can I get my license key to take hold?

::MikiNanuk

11
General Board / Re: Generate DDL for multiple tables at once
« on: August 24, 2004, 01:21:11 pm »
Thanks!

We were looking for it to be in the top level of the context menu, like it is for individual tables.

Eric

12
General Board / Generate DDL for multiple tables at once
« on: August 24, 2004, 11:17:47 am »
We have modelled our data store in EA using the table stereotype.  Now we want to create DDL for SQL Server 2000.  The best method we have found is to individually right-click each table in the data model diagram and export to a file.

Is there a way to create the DDL for all tables in the data model with one action?

Thanks!

Eric

13
General Board / Re: Model Tasks
« on: August 16, 2004, 10:00:14 am »
Are there any plans to add this feature to the product in some release?  Seems like quite a bit of effort to go directly to the database to get a sorted task list...?

14
General Board / Model Tasks
« on: July 30, 2004, 10:12:35 am »
I like the idea of the built-in model tasks list.  I just can't find a few features that would make it a lot more useful (or maybe they are missing?).

Most importantly, I want to change the columns that are displayed, for example to show the due date.

I would also like to be able to cut-and-paste into Excel.

Am I missing something, or are these features just not implemented?

15
General Board / Referencing other EAP projects
« on: July 27, 2004, 09:46:00 am »
We are creating one EAP file for each namespace, so that multiple designers can each work on their own area.  Is it possible for one EAP file to reference another one, so that the classes in the referenced EAP file are available?

For example, we have Company.Product.BizObj that defines basic business objects such as Customer, Account, etc.  Another namespace, Company.Product.Settlement, implements classes that know how to settle an account for a customer, and it would be nice for Settlement.EAP to be able to make use of (but not change) classes defined in BizObj.EAP.

Eric

Pages: [1] 2