Thanks to both of you, friends! In the designer mode, i don't know how to set the tag property of an imageview to an edittext! Anyway, i solved in this way: i set up tags of the imageviews as 1, 2, 3, ... and then i wrote this code in the clickDate event:
Dim btnData As ImageView = Sender, indice As Int = btnData.Tag
' something for mydate'
Select indice
Case 1
edt1.Text = myDate
Case 2
edt2.Text = myDate
Case 3
edt3.Text = myDate
End Select
End If
For now, all works fine! Bye!!!