Dim Section() As ImageView
For Image_count = 1 To 10
Section(Image_count).Initialize(Section(Image_count)) '<<<<<< OBJECT CONVERTED TO STRING ERROR
Section(Image_count).SetImage(im)
MainForm.RootPane.AddNode(Section(Image_count),230,Image_Start_Point - 80,614,254)
Dim jo As JavaObject = Section(Image_count) ' the imageview
Dim o As Object = jo.CreateEvent("javafx.beans.value.ChangeListener","moved",False)
jo.runmethodJO("layoutYProperty",Null).RunMethod("addListener",Array(o)) ' make sure you choose property that will change
Next