2
In a Registration Form when clicking search the textbox are completed. And if any of these Textbox has a value that is on plan1 from the "AS" column then this Textbox has the highlighted text (e.g. Green). I got a code but it’s not working.
In the module:
Function ProcuraCheque(Cheque As String) As Boolean
Dim Intervalo, Celula As Range
Set Intervalo = Planilha1.Range("A1:B10") 'Informe aqui o intervalo onde estão os dados
For Each Celula In Intervalo
If Celula.Value = Cheque Then
ProcuraCheque = True 'Verdadeiro se encontrado
Exit For
End If
Next Celula
End Function
Não estou conseguindo chamr a função no evento Change ou AfterUpdate da TextBox, passando na função o valor da TextBox (tipo TextBox1.Value...). Caso ela seja verdadeira (If ProcuraCheque(Textbox1.Value)=True), o propriedade ForeColor da TextBox assume o valor vbRed, e se for Falso, vbBlack.
Private Sub TextAI1_Change()
If TextAI1.Value = "FunctionProcuraCheque" Then
Me.TextAI1.ForeColor = &HFF0000
Else
Me.TextAI1.ForeColor = &HFF&
End If
End Sub