<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>familyshow Work Item Rss Feed</title><link>http://www.codeplex.com/familyshow/WorkItem/List.aspx</link><description>familyshow Work Item Rss Description</description><item><title>Closed Issue: GEDCOM Import of Full ASCII Character Set [418]</title><link>http://familyshow.codeplex.com/workitem/418</link><description>My GEDCOM file has latin characters and ascii 160, but they are not being imported.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:44 GMT</pubDate><guid isPermaLink="false">Closed Issue: GEDCOM Import of Full ASCII Character Set [418] 20130516103544A</guid></item><item><title>Closed Issue: Linking new people to existing people [420]</title><link>http://familyshow.codeplex.com/workitem/420</link><description>I have a GED file I imported and the ivsualization is good, but the relationship to a previous husband did not come through. I tried to link the people manually and the system is not linking to an existing person.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:44 GMT</pubDate><guid isPermaLink="false">Closed Issue: Linking new people to existing people [420] 20130516103544A</guid></item><item><title>Closed Issue: App crashes when clicked on Photo &amp; Stories [425]</title><link>http://familyshow.codeplex.com/workitem/425</link><description>When opening up the Windsor.family file and selecting Prince Charles then click on Photos &amp;#38; Stories the app crashes. The same thing will occur with various people. I&amp;#39;ve been able to reproduce on 2 different machines.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:43 GMT</pubDate><guid isPermaLink="false">Closed Issue: App crashes when clicked on Photo &amp; Stories [425] 20130516103543A</guid></item><item><title>Closed Feature: Localized versions [427]</title><link>http://familyshow.codeplex.com/workitem/427</link><description>Dear,&lt;br /&gt;&amp;#160;&lt;br /&gt;Does Vertigo intends to localize this application&amp;#63; If so, I&amp;#39;d love to see it localized to brazilian portuguese. By the way, if help on translation is needed, do not hesitate on counting on me. I know a  bit about Winforms and localization, but I am new to WPF. Even so, drop me a line and let me know how I can help.&lt;br /&gt;&amp;#160;&lt;br /&gt;--&lt;br /&gt;Luciano Evaristo Guerche&lt;br /&gt;Taboao da Serra, SP, Brazil&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:43 GMT</pubDate><guid isPermaLink="false">Closed Feature: Localized versions [427] 20130516103543A</guid></item><item><title>Closed Issue: Crash when I try to change skin [429]</title><link>http://familyshow.codeplex.com/workitem/429</link><description>The application crashes every time i try to change the skin.  When i restart the change shows up.  My system is a XP SP2.  Thanks.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:43 GMT</pubDate><guid isPermaLink="false">Closed Issue: Crash when I try to change skin [429] 20130516103543A</guid></item><item><title>Closed Issue: GedcomImport logic problem in ImportChildren method [621]</title><link>http://familyshow.codeplex.com/workitem/621</link><description>BUG REPORT&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;There are at least two errors in the way that spouse relationships are adding during GEDCOM import. Specifically, cases where only one parent is known have problems. Also, I have cases where a person with multiple spouses with multiple children do not import properly.&lt;br /&gt;&amp;#160;&lt;br /&gt;In the ImportChildren method, there is some flawed logic. I grabbed the FamilyShow code to help me generate the XML for a seperate purpose and encountered this problem. I do not know the code to fix FamilyShow, but here is my modification that worked for my purpose. Please look at this method.&lt;br /&gt;&amp;#160;&lt;br /&gt;By the way, GREAT PROGRAM. This is honestly one of the coolest applications I&amp;#39;ve seen in a long time. Thank you several time over for putting this together.&lt;br /&gt;&amp;#160;&lt;br /&gt;Here is the code i modified in GedcomImport.cs in the ImportChildren method, changes are at the end&amp;#58;&lt;br /&gt;&amp;#160;&lt;br /&gt;foreach &amp;#40;string child in children&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;&amp;#47;&amp;#47; Get the Person object for the child.&lt;br /&gt;Person childPerson &amp;#61; people.Find&amp;#40;child&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;&amp;#47;&amp;#47; Calling RelationshipHelper.AddChild hooks up all of the&lt;br /&gt;&amp;#47;&amp;#47; child relationships for the husband and wife. Also hooks up&lt;br /&gt;&amp;#47;&amp;#47; the sibling relationships.&lt;br /&gt;if &amp;#40;husbandPerson &amp;#33;&amp;#61; null &amp;#38;&amp;#38; wifePerson &amp;#33;&amp;#61; null &amp;#38;&amp;#38; childPerson &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;RelationshipHelper.AddChild&amp;#40;people, husbandPerson, childPerson&amp;#41;&amp;#59;&lt;br /&gt;RelationshipHelper.AddChild&amp;#40;people, wifePerson, childPerson&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&amp;#160;&lt;br /&gt;if &amp;#40;husbandPerson &amp;#61;&amp;#61; null &amp;#38;&amp;#38; wifePerson &amp;#33;&amp;#61; null &amp;#38;&amp;#38; childPerson &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;RelationshipHelper.AddChild&amp;#40;people, wifePerson, childPerson&amp;#41;&amp;#59;&lt;br /&gt;&amp;#160;&lt;br /&gt;if &amp;#40;husbandPerson &amp;#33;&amp;#61; null &amp;#38;&amp;#38; wifePerson &amp;#61;&amp;#61; null &amp;#38;&amp;#38; childPerson &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;RelationshipHelper.AddChild&amp;#40;people, husbandPerson, childPerson&amp;#41;&amp;#59;&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: GedcomImport logic problem in ImportChildren method [621] 20130516103542A</guid></item><item><title>Closed Feature: Not possible to add existing people to other families [714]</title><link>http://familyshow.codeplex.com/workitem/714</link><description>It is not currently possible to add currently defined people as spouse&amp;#47;parent to oother families.&lt;br /&gt;&amp;#160;&lt;br /&gt;Suppose we have created a family &amp;#40;father X1 and all the kids including i.e. D1&amp;#41;. Now D1 is a spouse of another person in another family, it is not possible to define this or make this relationship. The same is true for parents.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:42 GMT</pubDate><guid isPermaLink="false">Closed Feature: Not possible to add existing people to other families [714] 20130516103542A</guid></item><item><title>Closed Issue: Change parents - crash [949]</title><link>http://familyshow.codeplex.com/workitem/949</link><description>There is a bug, which sometimes results in a crash.&lt;br /&gt;It&amp;#39;s very easy to reproduce&amp;#58;&lt;br /&gt;1&amp;#41; Create Mom and Dad&lt;br /&gt;2&amp;#41; Create a Son&lt;br /&gt;3&amp;#41; Try to create a Mother for this Son.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: Change parents - crash [949] 20130516103542A</guid></item><item><title>Closed Issue: Family.Show has stopped working [1160]</title><link>http://familyshow.codeplex.com/workitem/1160</link><description>&amp;#34;A problem caused the program to stop working correctly.  Windows will close the program and notify you if a solution is available.&amp;#34;&lt;br /&gt;&amp;#160;&lt;br /&gt;I downloaded family show v2 and started developing our family tree last night.  Today, I tried to continue expanding the tree, but the tree view is missing.  I can see all of the family members list and the expanded view.&lt;br /&gt;When I select any of the family members to try and bring out the tree view, I get the above error.&lt;br /&gt;&amp;#160;&lt;br /&gt;I am able to view the tree for the sample windsor.family.&lt;br /&gt;&amp;#160;&lt;br /&gt;Any ideas&amp;#63;&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:41 GMT</pubDate><guid isPermaLink="false">Closed Issue: Family.Show has stopped working [1160] 20130516103541A</guid></item><item><title>Closed Issue: Problem with GEDECOM file generated by Family.Show [1854]</title><link>http://familyshow.codeplex.com/workitem/1854</link><description>Thank you for your work, your software is very nice, very funny and very easy to use&amp;#33; So I used it to generate a.ged file. But when importing the ged file &amp;#40;generated using FamilyShow-&amp;#62;Export&amp;#41; into other softwares &amp;#40;I tried phpGedView&amp;#41;, all the persons can be seen but the links to their family are lost. It seems links in INDIvidual records -&amp;#62; FAMily records are missing. I added them handly and it was fixed.&lt;br /&gt; My opinion is that 1 or 2 lines are missing in individal record  &amp;#40;FAMS and FAMC tags&amp;#41;&lt;br /&gt;1 FAMS &amp;#64;F2&amp;#64;&lt;br /&gt;1 FAMC &amp;#64;F1&amp;#64;.&lt;br /&gt;&amp;#160;&lt;br /&gt;I don&amp;#39;t know your tools, so I&amp;#39;m afraid I can&amp;#39;t help. May be in the future...&lt;br /&gt;&amp;#160;&lt;br /&gt;Thanks&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:41 GMT</pubDate><guid isPermaLink="false">Closed Issue: Problem with GEDECOM file generated by Family.Show [1854] 20130516103541A</guid></item><item><title>Closed Feature: Printing off tree [3105]</title><link>http://familyshow.codeplex.com/workitem/3105</link><description>How do you print off a hard copy document&amp;#63;&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:41 GMT</pubDate><guid isPermaLink="false">Closed Feature: Printing off tree [3105] 20130516103541A</guid></item><item><title>Closed Issue: Relationship date [3277]</title><link>http://familyshow.codeplex.com/workitem/3277</link><description>Hello,&lt;br /&gt;I installed your software, and everything works fine except the date of the relationships &amp;#40;as you can see in the image&amp;#41;.&lt;br /&gt;Is there any font that is necessary to install&amp;#63; Why do I have this issue&amp;#63;&lt;br /&gt;&amp;#160;&lt;br /&gt;Thanks in advance.&lt;br /&gt;&amp;#160;&lt;br /&gt;PS&amp;#58; I&amp;#39;m running Windows XP SP2&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:40 GMT</pubDate><guid isPermaLink="false">Closed Issue: Relationship date [3277] 20130516103540A</guid></item><item><title>Closed Issue: system hangs processor [4999]</title><link>http://familyshow.codeplex.com/workitem/4999</link><description>I have updated my family tree up to 94 people and the system will just hang, using my processor but taking 30 seconds to a minute to move onto the next action.  Typing entries is almost impossibly slow.  The Windsor file still opens up fine.  What issues could exist that would cause the program to hang&amp;#63;&lt;br /&gt;</description><author>logicchild</author><pubDate>Thu, 16 May 2013 10:35:40 GMT</pubDate><guid isPermaLink="false">Closed Issue: system hangs processor [4999] 20130516103540A</guid></item><item><title>Closed Feature: Usability improvement: combine open/import and save/export [5634]</title><link>http://familyshow.codeplex.com/workitem/5634</link><description>I really like Family.Show&amp;#33; It demonstrates well that complexity and simplicity can walk hand in hand.&lt;br /&gt;The menu good be simplified even more, by leaving out the GedCom menu and adding the GedCom file format to the file type dropdownlist in the Open... and Save... dialog windows.&lt;br /&gt;The menu option &amp;#34;What is GedCom&amp;#63;&amp;#34; could be left out, or moved to a help menu, but I think the power of the App is that it&amp;#39;s so self-explanatory, that it doesn&amp;#39;t need a Help menu.&lt;br /&gt;The video-cast on the Vertigo site explains it all.&lt;br /&gt;&amp;#160;&lt;br /&gt;Keep up the good work&amp;#33;&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:40 GMT</pubDate><guid isPermaLink="false">Closed Feature: Usability improvement: combine open/import and save/export [5634] 20130516103540A</guid></item><item><title>Closed Issue: Family sort order sorts on birth year, not on birth date [5639]</title><link>http://familyshow.codeplex.com/workitem/5639</link><description>When I click on the &amp;#34;Birth&amp;#34; column header in the Family list on the right side of Family.Show, the sort order changes to that column, but as you can see on the attached image, it&amp;#39;s not sorted on the full birth date, which gives strange results in the Age column &amp;#40;as you can see on the image&amp;#41;. Could the sorting mechanism use the full birth date&amp;#63; Probably Death date has the exact same issue.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:40 GMT</pubDate><guid isPermaLink="false">Closed Issue: Family sort order sorts on birth year, not on birth date [5639] 20130516103540A</guid></item><item><title>Closed Feature: Print Diagrams [5720]</title><link>http://familyshow.codeplex.com/workitem/5720</link><description>Add menu item to allow user to Print Diagrams and, perhaps, other visuals and information from Family.Show&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:39 GMT</pubDate><guid isPermaLink="false">Closed Feature: Print Diagrams [5720] 20130516103539A</guid></item><item><title>Closed Issue: Use RelativePath were possible to enable sending *.family files without creating a dummy FullyQualifiedPath [6014]</title><link>http://familyshow.codeplex.com/workitem/6014</link><description>I wanted to send my family tree to my sister. After testing to see if the &amp;#39;RelativePath&amp;#39; reference in the XML would actually be used, I discovered it wasn&amp;#39;t.&lt;br /&gt;If the FullyQualifiedPath isn&amp;#39;t set on my sisters machine, to exactly the same as my user directory, she won&amp;#39;t be able to see any images &amp;#40;ie in the &amp;#39;Images&amp;#39; folder&amp;#41;.&lt;br /&gt;&amp;#160;&lt;br /&gt;I created a patch for this, which needs rework in terms of design, but it works. I can copy&amp;#47;paste my Family.Show folder to anywhere on my hard drive, including xxx.family one level outside that folder.&lt;br /&gt;Then I can browse and open that file and have Family.Show be able to find the photos &amp;#40;using the RelativePath&amp;#41;.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:39 GMT</pubDate><guid isPermaLink="false">Closed Issue: Use RelativePath were possible to enable sending *.family files without creating a dummy FullyQualifiedPath [6014] 20130516103539A</guid></item><item><title>Closed Issue: Twins &amp; Up [6306]</title><link>http://familyshow.codeplex.com/workitem/6306</link><description>It seems that the DOB &amp;#40;month and day&amp;#41; for twins causes the second one added to show a &amp;#63;&amp;#47;&amp;#63;.  It would be nice if there was a special link for them and allowing the order of delivery.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:39 GMT</pubDate><guid isPermaLink="false">Closed Issue: Twins &amp; Up [6306] 20130516103539A</guid></item><item><title>Closed Issue: Incorrect Age Displayed [6486]</title><link>http://familyshow.codeplex.com/workitem/6486</link><description>The ages in the list view on the right continue even for deceased people.  It should show their age up to the point they died.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:38 GMT</pubDate><guid isPermaLink="false">Closed Issue: Incorrect Age Displayed [6486] 20130516103538A</guid></item><item><title>Closed Issue: Family Tree Maker 2009  GEDCOM Incompatibility [6968]</title><link>http://familyshow.codeplex.com/workitem/6968</link><description>When I try to import the GEDCOM file created by the latest version of Family.Show &amp;#40;Nov&amp;#41; into Ancestry.com&amp;#39;s Family Tree maker 2009 it throws the Error &lt;br /&gt;&amp;#34;GEDCOM file must be version 5.5 or greater&amp;#34;.&lt;br /&gt;</description><author>elyoh</author><pubDate>Thu, 16 May 2013 10:35:38 GMT</pubDate><guid isPermaLink="false">Closed Issue: Family Tree Maker 2009  GEDCOM Incompatibility [6968] 20130516103538A</guid></item></channel></rss>