Ciao fifiddu,
ho seguito tutti i tuoi video, ed è per questo che mi sono avvicinato a b4a.
Onestamente credevo di aver inserito tutto per risolvere il dubbio.
Sostanzialmente nella Activity create ho una edit text che vorrei scrivere in automatico con il dialog data
Sempre nell'activity create inizializzo la edit text
Inserimentoscheda.Initialize("")
Inserimentoscheda.TextColor = Colors.Blue
Inserimentoscheda.TextSize = 14
Inserimentoscheda.Text=""
poi vorrei, che quando l'utente seleziona la edittext, si apra l'input della data.
quindi richiamare la seguente sub
Sub Inserimentoscheda_FocusChanged (HasFocus As Boolean)
If Inserimentoscheda.RequestFocus = True Then
txt=""
dd.Year = DateTime.GetYear(DateTime.Now)
dd.Month = DateTime.GetMonth(DateTime.Now)
dd.DayOfMonth = DateTime.GetDayOfMonth(DateTime.Now)
ret = dd.Show("Inserisci la tua data di nascita", "", "Ok", "Annulla","" ,bmp)
If ret=-3 Then
Return True
End If
If ret =-1 Then
Inserimentoscheda.Text = dd.DayOfMonth & "/" & dd.Month & "/" & dd.Year
End If
End If
End Sub
La parte " _FocusChanged (HasFocus As Boolean)" rimane colorata in rosso e non funziona.
non riesco a venirne a capo :BangHead:
Grazie mille