Hello, I am interested in ActiveX but I have a question that I could not solve, how do I change the color of the line when I do a filter through my SQL?
'---------------------------------------
'CODE - MS ACCESS 2010
'---------------------------------------
Privete Function MyFNC
Dim strsql
strsql = "select codigo, rzsocial from clientes where rzsocial like '%" & Me.txBusca.Text & "%'"
ConL (strsql)
If rsL.RecordCount = 0 Then Exit Function
Dim grd As iGrid
Set grd = grid.Object
grd.RowMode = True
'--Here we report the line filtered, but is only in gray, difficult viewing.
grd.CurRow = rsL(0)
End Function