imgsimonebiliato Well-Known Member Licensed User Longtime User Jan 16, 2013 #1 Hi, How can I make an edittext scrollable, but without changing its contents? Or are there any other scrollable components? Thk
Hi, How can I make an edittext scrollable, but without changing its contents? Or are there any other scrollable components? Thk
Erel B4X founder Staff member Licensed User Longtime User Jan 17, 2013 #2 Do you want the text to be editable? If not then you can use a Label. Try CustomListView. It has an AddText method that will help you with this. Upvote 0
Do you want the text to be editable? If not then you can use a Label. Try CustomListView. It has an AddText method that will help you with this.
imgsimonebiliato Well-Known Member Licensed User Longtime User Jan 28, 2013 #3 Erel said: Do you want the text to be editable? If not then you can use a Label. Try CustomListView. It has an AddText method that will help you with this. Click to expand... Hi Erel, I tried to use a ListView. I fill it with a loop from a text file but the last row of this file isn't always write.. Do you know why? Upvote 0
Erel said: Do you want the text to be editable? If not then you can use a Label. Try CustomListView. It has an AddText method that will help you with this. Click to expand... Hi Erel, I tried to use a ListView. I fill it with a loop from a text file but the last row of this file isn't always write.. Do you know why?
Erel B4X founder Staff member Licensed User Longtime User Jan 28, 2013 #4 Not sure what you mean. Note that I recommended you to use CustomListView class, not ListView. Upvote 0
H hillzx Member Licensed User Longtime User Jan 1, 2015 #5 Erel said: Not sure what you mean. Note that I recommended you to use CustomListView class, not ListView. Click to expand... I've got error when using customlistview, i am attached a picture to show you the error Attachments customlv.png 79.4 KB · Views: 334 Upvote 0
Erel said: Not sure what you mean. Note that I recommended you to use CustomListView class, not ListView. Click to expand... I've got error when using customlistview, i am attached a picture to show you the error
Erel B4X founder Staff member Licensed User Longtime User Jan 1, 2015 #6 CustomListView class is not a view by itself. clv.AsView will return a reference to the CustomListView main ScrollView. Upvote 0
CustomListView class is not a view by itself. clv.AsView will return a reference to the CustomListView main ScrollView.
H hillzx Member Licensed User Longtime User Jan 2, 2015 #7 Erel said: CustomListView class is not a view by itself. clv.AsView will return a reference to the CustomListView main ScrollView. Click to expand... thank you master erel Upvote 0
Erel said: CustomListView class is not a view by itself. clv.AsView will return a reference to the CustomListView main ScrollView. Click to expand... thank you master erel