I have a page that I added 2 scrollviews to so I can create my own drop-down menu selection list. The forms are almost identical, in fact one is a copy of the other, but one if them looks normal, while the other appears to have its content approx. 60% in size?? I cannot see why..
Private LocationPicker As ScrollView
Private IndustryPicker As ScrollView
LocationPicker.Panel.LoadLayout("ToPickLocations")
IndustryPicker.Panel.LoadLayout("ToPickIndustries")
IndustryPicker.contentwidth = IndustryPicker.width
IndustryPicker.ContentHeight = 1320
LocationPicker.contentwidth = LocationPicker.width
LocationPicker.ContentHeight = 340
Does anybody have any thoughts why the 'LocationPicker' is scaled???
It is even if I use this code:
LocationPicker.Panel.LoadLayout("ToPickIndustries")
IndustryPicker.Panel.LoadLayout("ToPickIndustries")
IndustryPicker.contentwidth = IndustryPicker.width
IndustryPicker.ContentHeight = 1320
LocationPicker.contentwidth = LocationPicker.width
LocationPicker.ContentHeight = 1320
I am stumped...
Private LocationPicker As ScrollView
Private IndustryPicker As ScrollView
LocationPicker.Panel.LoadLayout("ToPickLocations")
IndustryPicker.Panel.LoadLayout("ToPickIndustries")
IndustryPicker.contentwidth = IndustryPicker.width
IndustryPicker.ContentHeight = 1320
LocationPicker.contentwidth = LocationPicker.width
LocationPicker.ContentHeight = 340
Does anybody have any thoughts why the 'LocationPicker' is scaled???
It is even if I use this code:
LocationPicker.Panel.LoadLayout("ToPickIndustries")
IndustryPicker.Panel.LoadLayout("ToPickIndustries")
IndustryPicker.contentwidth = IndustryPicker.width
IndustryPicker.ContentHeight = 1320
LocationPicker.contentwidth = LocationPicker.width
LocationPicker.ContentHeight = 1320
I am stumped...