If you use the wheel like in the demo program, the following sub will get return the long variable of the ticks of the date (in the demo wv1 returns the day, wv2 the name of the month from val array, wv3 the year):
Sub getlong As Long
Dim k As Int
DateTime.DateFormat = "dd/MM/yyyy"
For i = 0 To val.Length - 1
If wv2.ReadWheel = val(i) Then
k = i+1
Exit
End If
Next
Return DateTime.DateParse(wv1.ReadWheel & "/" & NumberFormat(k,2,0) & "/" & wv3.ReadWheel)
End Sub
or use dateparse on the result string after making it look like the date format you use.