|
|
|
|
Customers Important Contributors FamilyTrees.GenoPro.com GenoPro version: 3.1.0.1
Last Login: 3 hours ago
Posts: 1,608,
Visits: 33,390
|
Have not had any success with IE6; Firefox causes no problems with the picture display, and the show also works.
The code for an individual is
href="mypictures/pop.jpg"><img src="mypictures/pop.jpg" width="248" height="247" border=0 alt="pop"/></a></div></td></tr></table><tr><td></td><td width='248'><div align='center'><img border='0' src='images/play.png' onclick="showpics('ind00004','ind00004_pics',248,248,'mypictures/',3000);"/><img border='0' src='images/stop.png' onclick="stoppics();"/><img border='0' src='images/previous.png' onclick="pickpic('ind00004','ind00004_pics',248,248,-1,'mypictures/');"/><select id='ind00004_pics' onchange="pickpic('ind00004','ind00004_pics',248,248,0,'mypictures/');"><option selected value="pop.jpg¦¦500x499">pop</option>
<option value="apbatrocks.jpg¦¦">apb on beach</option>
</select><img border='0' src='images/next.png' onclick="pickpic('ind00004','ind00004_pics',248,248,1,'mypictures/');"/></div></td></tr><tr><td></td><td><table width='250px'><tr><td><div id='ind00004desc'></div></td></tr></table></td> |
I hope I have extracted the bit that counts. Any clues as to why IE6 can not recognise this code - when Firefox has no problems?
|
|
|
|
|
Administrators Customers Important Contributors FamilyTrees.GenoPro.com GenoPro version: 3.1.0.1
Last Login: Today @ 6:06 AM
Posts: 3,487,
Visits: 27,235
|
Your second picture, apbatrocks.jpg, has no height or width information. I don't know why the Report Generator sometimes does not return this data (p.cache.dimension). Try removing the picture from GenoPro and adding it again and see if that helps.
'lego audio video erro ergo disco' or "I read, I listen, I watch, I make mistakes, therefore I learn"
|
|
|
|
|
Administrators Moderators Customers Gamma FamilyTrees.GenoPro.com Translator GenoPro version: 3.1.0.1
Last Login: Tuesday, February 3, 2026
Posts: 4,886,
Visits: 22,803
|
I don't know why the Report Generator sometimes does not return this data (p.cache.dimension)
Could it be the picture is not there? Do you get errors while generating the report? If a picture is not there, there is an entry in the report log.
|
|
|
|
|
Customers Important Contributors FamilyTrees.GenoPro.com GenoPro version: 3.1.0.1
Last Login: 3 hours ago
Posts: 1,608,
Visits: 33,390
|
I did not change the original data set in GenoPro (all of the pictures show size in the table view)
However I followed MR's suggestion and regenerated the report into the same location and this time the size information is there and the report views in both
|
|
|
|
|
Administrators Moderators Customers Gamma FamilyTrees.GenoPro.com Translator GenoPro version: 3.1.0.1
Last Login: Tuesday, February 3, 2026
Posts: 4,886,
Visits: 22,803
|
I see. I need to "document a hidden feature" about the report generator to trigger a load if the picture the picture cache is empty. In fact, I will add a method to explicitly update the picture cache if empty.
In the meantime, use the method ToHtmlHyperlinkPicture on each picture to trigger a picture to load if the cache is empty. Just discard the value returned by ToHtmlHyperlinkPicture.
|
|
|
|
|
Customers GenoPro version: 2.5.4.1
Last Login: Friday, October 18, 2013
Posts: 142,
Visits: 3,822
|
Ron,
I like your report so much, I decided it best to try and improve a bit, rather than create a new one. The one issue I was not crazy about is the tense of the to-be verb. I have a snippit of code you can add to your version, which will correct this.
In the place where you write "parents were", the new code will change it to "parents are", if both alive, or "parents were" if not. This code can be used in other locations. See below...
Call from here:
if collparents.count > 0 then
Report.Write strName&"'s parents "
Write_to_be_verb collparents,true
for iParent = 0 to collparents.count - 1
...
|
This is the subroutine:
'===========================================================
sub write_to_be_verb(coll_list, always_plural)
printed_to_be_verb = false
if coll_list.count = 1 and not always_plural then
if coll_list(1).is_dead <> "Y" then
Report.Write " is "
else
Report.Write " was "
end if
else
for i_item = 0 to coll_list.count - 1
if coll_list(i_item).is_dead = "Y" and not printed_to_be_verb then
Report.Write " were "
printed_to_be_verb = true
end if
next
if not printed_to_be_verb then
Report.Write " are "
end if
end if
end sub
'===========================================================
|
Danny
|
|
|
|
|
Customers GenoPro version: 2.0.1.4
Last Login: Thursday, June 30, 2016
Posts: 141,
Visits: 294
|
Hello,
This is my first post in this forum.
I have been using GenoPro 1.91b for a long time.
I am trying to switch to V2.0 Beta as soon as I can. I am particularly waiting for a major feature. I have been hopping that the Unicode will allow me to enter some names in different languages.
I have installed the Beta V2.B13e. I have also downloaded the Ron's reports 1 and 2.
Report 1 doesn't appear to show any family photos at all. Report 2 only shows the one family default photo.
Has anyone actually converted the standard English HTML report template from V1.91b?
By the way I am still unable to enter names in different languages. I can only change the language for the whole tree.
Thank you,
Frank1
|
|
|
|
|
Customers Important Contributors FamilyTrees.GenoPro.com Translator GenoPro version: 3.1.0.1
Last Login: Sunday, March 21, 2021
Posts: 716,
Visits: 12,927
|
If the input of foreign names using Unicode is a mayor feature for you, then I can answer this with confidence, having used this to input japanese names for app. 180 names without any problem.
The report #2 shows the first photo as a default, all other pictures are shown via a slide show using the utmost left arrow underneath the photo. The same goes for the family photos.
Is it the layout of the former HTML report you want to have?
The discussion around here goes into the direction of having an even better report than previously with the 1.91b version was possible. So any comment is welcome to improve things.
|
|
|
|
|
Administrators Moderators Customers Gamma FamilyTrees.GenoPro.com Translator GenoPro version: 3.1.0.1
Last Login: Tuesday, February 3, 2026
Posts: 4,886,
Visits: 22,803
|
I am working on the report templates to include photos. In the future, GenoPro will support a different font for each GenoMap, allowing different alphabets to be displayed on the same genealogy tree. You can enter anny name with GenoPro, however you have to pick the right font to display such names.
|
|
|
|
|
Customers GenoPro version: 2.5.4.1
Last Login: Friday, October 18, 2013
Posts: 142,
Visits: 3,822
|
Is there any thought about including mutliple languages for names entry? By that I mean, having the same name appear in more than one language, e.g. English and Japanese or Greek etc., so that the same person has another name (like an alias). Each name entry would appear in a different field. So, for example, the person's name would be "First Name, First Name (lang 2), second name, second name (lang 2)
There may be a better scheme to manage the multiple language entry.
The second language can be identified in some manner so as to print properly in the reports.
Danny
|