GenoPro Home
GenoPro Home  |  Get Started With My Genealogy Tree  |  Buy  |  Login  |  Privacy  |  Search  |  Site Map
 
report


https://support.genopro.com/Topic15221.aspx
Print Topic | Close Window

By Przytula - Saturday, December 16, 2006
1. when displaying the default.htm - generated by report there is an indication /link to
view complete a-z surname index that can be expanded
Is there any possibility to have the code/skin changed to have this link by default expanded when displaying
the default page ?

2. on this same homepage : the top part of the form - keeping the title and icons to toc-home...
I would like to have this changed, to have more rows and make this part higher and put a larger icon on the
extreme right

Anybody who can give me a hint how to make these changes...
Thanks for all info/help
Best Regards, Guy Przytula
By josephab10 - Wednesday, December 27, 2006
Hi,

I need to change the skin file. After converting from ged to html, the frame in the left pane must list the first name followed by the father name and the year of birth. The actual skin template shows the first name followed by the family name and the year of birth. I want to change this display.

I was able to do this modification by myself on genopro 1.9, I can't do it on 2007.

Can anybody help me please?

By genome - Wednesday, December 27, 2006
Przytula (12/17/2006)
1. when displaying the default.htm - generated by report there is an indication /link to
view complete a-z surname index that can be expanded
Is there any possibility to have the code/skin changed to have this link by default expanded when displaying
the default page ?

2. on this same homepage : the top part of the form - keeping the title and icons to toc-home...
I would like to have this changed, to have more rows and make this part higher and put a larger icon on the
extreme right

Create a customized skin and change default.htm as per the following extract. Remove the lines outlined in blue to always show the A-Z index frame. Change the number outlined in red to change the height of the heading frame, e.g. change 45 to 90 to double its height.

 

 

Change lines 28 & 29 of heading.htm the change or increase size of image on extreme right. The current setting is the GenoPro logo, i.e.:

<a target="_blank" href="http://www.genopro.com/">
<img src="images/genopro.logo.gif" title="Create Your Family Tree in Minutes!" alt="Create Your Family Tree in Minutes!" width="36" height="36" border="0"/></a>
By genome - Wednesday, December 27, 2006
josephab10 (12/27/2006)
I need to change the skin file. After converting from ged to html, the frame in the left pane must list the first name followed by the father name and the year of birth. The actual skin template shows the first name followed by the family name and the year of birth. I want to change this display.

Firstly may I politely point out that this not the same issue as the original post so should have been posted using the 'Add Topic' button to start a new topic, rather than using 'Add reply'.

I also wonder why you require this change, since the majority of individuals are recorded with their father's name anyway. Females should also be recorded with their unmarried names, making this change unnecessary.

But here is a suggested but untested solution. In a customized skin change Lang.vbs lines ~ 712-716

from
 If hyperlink Then
  Report.WriteFormatted "<a href='{}' onclick='hidePopUpFrame();'>{&t}</a>", i.Href, i.Name
 Else
  Report.WriteFormatted "{&t}", i.Name
 End If
to
 If hyperlink Then
  Report.WriteFormatted "<a href='{}' onclick='hidePopUpFrame();'>{&t} {&t}</a>", i.Href, i.Name.FirstAndMiddle, i.Father.Name.Last
 Else
  Report.WriteFormatted "{&t} {&t}", i.Name.FirstAndMiddle, i.Father.Name.Last
 End If

Also change Init.htm lines ~65-68

 from
strLast = i.Name.Last
 If strLast = "" Then
  strLast = i.Name.Last2
 End If
to
 strLast = i.Father.Name.Last
and Init.htm lines ~ 83-84

from
     strNameLast = i.Name.Last
 If strNameLast = "" Then strNameLast = i.Name.Last2
to
     strNameLast = i.Father.Name.Last