How to find a letter begins them string with operator LIKE and object BINDINGSOURCE
The following code does not work :
Dim
sString As StringsString = "Like 'C*'"
Dim foundIndex As Integer = Me.DATI_BindingSource.Find("Cognome", sString) If foundIndex > -1 ThenDATI_BindingSource.Position = foundIndex
ElseMessageBox.Show(
"Nessun nomimativo con questa lettera iniziale.", "GSL", MessageBoxButtons.OK, MessageBoxIcon.Information) End IfThanks and ........excuse my imperfect English language.

BindingSource.Find by operator LIKE
TNROROC
Siva.M