L le_toubib Active Member Licensed User Longtime User May 1, 2016 #1 hi falks how to invoke combobox dropdown programmatically ??
EnriqueGonzalez Expert Licensed User Longtime User May 1, 2016 #2 hello! Something like this: B4X: Dim combo As ComboBox combo.Items.Add("This","is","A","test") Dim jo As JavaObject = combo jo.RunMethod("show",Null) Upvote 0
hello! Something like this: B4X: Dim combo As ComboBox combo.Items.Add("This","is","A","test") Dim jo As JavaObject = combo jo.RunMethod("show",Null)
rwblinn Well-Known Member Licensed User Longtime User Jun 10, 2016 #4 use AddAll with Array, like B4X: Dim combo As ComboBox combo.Items.AddAll(Array("This","is","A","test")) Dim jo As JavaObject = combo jo.RunMethod("show",Null) Upvote 0
use AddAll with Array, like B4X: Dim combo As ComboBox combo.Items.AddAll(Array("This","is","A","test")) Dim jo As JavaObject = combo jo.RunMethod("show",Null)
L le_toubib Active Member Licensed User Longtime User Jun 10, 2016 #5 It worked fine with me. And I'm using add all Upvote 0