In order to improve the user's experience, I moved the population of a ScrollView to a Service.
In this way a long (2600 items) ScrollView is populated in the background.
In order to do so, I declared and initialized the ScrollView:
dim SCV as ScrollView
SCV.Initialize(0)
After that I populate the SCV.
My problem is how to copy FAST the manually instantiated and populated SCV to the actual ScrollView in the GUI, something like:
ScrollView1 = SCV
Can you help me ?
Thank You.
In this way a long (2600 items) ScrollView is populated in the background.
In order to do so, I declared and initialized the ScrollView:
dim SCV as ScrollView
SCV.Initialize(0)
After that I populate the SCV.
My problem is how to copy FAST the manually instantiated and populated SCV to the actual ScrollView in the GUI, something like:
ScrollView1 = SCV
Can you help me ?
Thank You.