1
General Board / Re: Reflexive Associations
« on: May 09, 2005, 03:58:10 pm »Quote
The Sparxians said it's something they intend to fix in a future (unpecifried) release.
Excellent. Thanks for the tip.

-Charlie
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.
The Sparxians said it's something they intend to fix in a future (unpecifried) release.

EA.File file = package.Element.Files.AddNew(urlAddress, "Web Address") as EA.File;
file.Update();
private void AddFileToPackage(EA.Package package, string urlAddress)
{
....if (package != null)
....{
........if (package.Element != null)
........{
............package.Element.Files.AddNew(urlAddress, "Web Address");
............package.Element.Update();
............package.Update();
........}
....}
}