KB-30904: Validando o valor escrito em um SetPoint.

Descrição:

Como validar o valor escrito em um SetPoint antes de enviá-lo para um tag?

Solução:

Para isto, utilize o evento Validate() do proprio Setpoint. Exemplo:

Sub Setpoint_Validate(Cancel, NewValue)
     'Confirmação se deseja alterar o valor do tag
     if MsgBox("Deseja alterar o valor do tag de " & Value & " para " & NewValue & "?", vbQuestion + vbYesNo, "Confirmação")=vbNo then
     'Cancela
          Cancel = True
     end if
End Sub

Anexos:

Setpoint_Validar.zip

Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *