tcgoh Active Member Licensed User Longtime User Mar 15, 2012 #1 Hi, I have created a spinner drop down list with DBUtils.ExecuteSpinner(SQL1,"select DISTINCT SUBSTR(colname,1,3) from crew",Null,0,spinpage2) But I am lost on how to display the selected "text" on to a edittext box from the spinner after clicking on them. Sub spinpage2_itemclick (position As Int, value As Object) edittextbox.text = spinpage2.text ?? Anyone Thanks.
Hi, I have created a spinner drop down list with DBUtils.ExecuteSpinner(SQL1,"select DISTINCT SUBSTR(colname,1,3) from crew",Null,0,spinpage2) But I am lost on how to display the selected "text" on to a edittext box from the spinner after clicking on them. Sub spinpage2_itemclick (position As Int, value As Object) edittextbox.text = spinpage2.text ?? Anyone Thanks.
lagore Active Member Licensed User Longtime User Mar 15, 2012 #2 Hi B4X: edittext1.text = Myspn.SelectedItem Upvote 0