The following XML code is programmatically created by my application and displays well (with all gadgets and images inside the Scrollarea) when compiled with PB5.31. But it only shows the title and the scrollarea border (but not its content) when compiled with PB5.40....
Or could it be my fault, and anyone sees an error in the XML definition?
Thanks for your help!
Code: Select all
<?xml version='1.0' encoding='ISO-8859-1' ?>
<window id='#PB_Any' minwidth='500' minheight='410' text='Informationen über die Welterbestätte: Zeche Zollverein und Kokerei Zollverein in Essen' flags='#PB_Window_SystemMenu|#PB_Window_MinimizeGadget|#PB_Window_SizeGadget|#PB_Window_WindowCentered'>
<container name='WHContainer' flags='#PB_Container_Single'>
<vbox align='center' spacing='0' expand='item:2'>
<hbox align='left' spacing='3' expand='item:1'>
<vbox align='left' spacing='2' expand='item:2'>
<text name='WHNameTitle' text='Welterbestätte:' width='103' height='17' />
<hbox align='left' spacing='2' expand='item:3'>
<empty/><empty/>
<text name='WHName' text='Zeche Zollverein und Kokerei Zollverein in Essen' />
</hbox>
<text/>
</vbox>
<singlebox align='center' expand='no' margin='0'>
<buttonimage name='WHListImage' width='22' height='22' />
</singlebox>
</hbox>
<scrollarea flags='#PB_ScrollArea_Single'>
<vbox align='left' spacing='0'>
<text name='WHNameIntTitle' text='Internationaler Name:' width='136' height='17' />
<hbox align='left' spacing='2' expand='item:3'>
<empty/><empty/>
<text name='WHNameInt' text='Zollverein Coal Mine Industrial Complex in Essen' />
</hbox>
<text/>
<text name='WHRegionTitle' text='Region:' width='59' height='17' />
<hbox align='left' spacing='3' expand='item:3'>
<empty/><empty/>
<text text='Europa & Nordamerika' />
</hbox>
<text/>
<text name='WHTypeTitle' text='Typ:' width='41' height='17' />
<hbox align='left' spacing='3' expand='item:3'>
<empty/><empty/>
<text text='Kultur-Welterbestätte' />
</hbox>
<text/>
<text name='WHStatusTitle' text='Status:' width='56' height='17' />
<hbox align='left' spacing='3' expand='item:3'>
<empty/><empty/>
<text text='2001 aufgenommen (25. Sitzung)' />
</hbox>
<text/>
<text name='WHPosTitle' text='Lage' width='45' height='17' />
<hbox align='left' spacing='3' expand='item:4'>
<empty/><empty/>
<text text='Kontinent:' />
<hyperlink name='WHContinent' text='Europa' flags='#PB_HyperLink_Underline' />
</hbox>
<hbox align='center' spacing='3' expand='no'>
<empty/><empty/>
<text text='Land:' />
<hyperlink name='WHCountry1' text=' Deutschland ' flags='#PB_HyperLink_Underline' />
</hbox>
<text/>
<text name='WHCoordinatesTitle' text='Geografische Koordinaten:' width='165' height='17' />
<hbox align='left' spacing='3' expand='item:3'>
<empty/><empty/>
<text text='51,49° Nord, 7,05° Ost' />
</hbox>
<text/>
<hbox align='center' spacing='3' expand='item:3'>
<empty/><empty/>
<image name='WHMapImage' width='240' height='120' />
</hbox>
<text/>
<text name='WHAddInfoTitle' text='Weitere Informationen:' width='145' height='17' />
<hbox align='left' spacing='3' expand='item:3'>
<empty/><empty/>
<hyperlink name='WHUnescoLink' text='Link zur UNESCO-Welterbe-Seite' flags='#PB_HyperLink_Underline' />
<image name='WHLogoImage' width='29' height='30' />
<text text='(ID 975)' />
</hbox>
<text/>
</vbox>
</scrollarea>
</vbox>
</container>
</window>



