Data una struttura tipo
codice:
Structure RecordInput
 <VbFixedString(50)> Dim Campo1 As String
 <VbFixedString(25)> Dim Campo2 As String
 <VbFixedString(10)> Dim Campo3 As String
End Structure
Dim RI As RecordInput
Come posso trovare la lunghezza di un campo a scelta?
Per esempio per RI.Campo2 devo riuscire a trovare "25"

Grazie