Just add the following sub ...
Sub scvLabel_LongClick
ImageView1.Visible=True
Button1.Visible=True
scvLabel.Visible=False
scvLabel.SendToBack
End Sub
but .. without knowing exactly what your trying to achieve it is hard to suggest, but I think your overdoing hiding views and sending them to back and front.
You load a Label to the Scrollview .. at the start just set ScrollView.Visible to false. forget about the label.
then all your left with ...
Button1_Click
scroText.Visible = True
Button1.visible = False
End Sub
Sub scvLabel_LongClick
scroText.Visible = False
Button1.visible = True
End Sub
You can then trim the other views click code as well ... as I said you might have other reasons to do it this way.