A Awesome Student 123 Member Licensed User Nov 16, 2016 #1 How do you hide and show a button image view anything?
Erel B4X founder Staff member Licensed User Longtime User Nov 16, 2016 #2 I'm not sure that I understand the question. Do you have a button with an image and you want to remove the image? Upvote 0
I'm not sure that I understand the question. Do you have a button with an image and you want to remove the image?
An Schi Well-Known Member Licensed User Nov 16, 2016 #3 Not sure to understand as well.... ....but most views have a 'visible' attribute. So you can do something like this (pseudocode): On button1 click imageview1.visible = False button2 click imageview1.visible = True Upvote 0
Not sure to understand as well.... ....but most views have a 'visible' attribute. So you can do something like this (pseudocode): On button1 click imageview1.visible = False button2 click imageview1.visible = True
A Awesome Student 123 Member Licensed User Nov 17, 2016 #4 Sorry about that but yes i wanted On button1 click imageview1.visible = False Thanks Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Nov 17, 2016 #5 You should handle the button click event: B4X: Sub Button1_Click ImageView1.Visible = False End Sub Upvote 0