Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

monicamix

Evento Change

Recommended Posts

Private Sub txtHistCheckListNovo_Change()

txtHistCheckListNovo.Text = Replace(txtHistCheckListNovo.Text, "'", "", 1, Len(txtHistCheckListNovo))

txtHistCheckListNovo.Text = Replace(txtHistCheckListNovo.Text, """", "", 1, Len(txtHistCheckListNovo))

txtHistCheckListNovo.SelStart = Len(txtHistCheckListNovo.Text)

End Sub

 

 

E este?

Private Sub txtHistFeedBackNovo_KeyPress(KeyAscii As Integer)

If KeyAscii = 39 Or KeyAscii = 34 Then

KeyAscii = 0

End If

End Sub

Compartilhar este post


Link para o post
Compartilhar em outros sites

Private Sub txtHistFeedBackNovo_KeyPress(KeyAscii As Integer)

 

SE A TECLA PRESSIONADA FOR ... OU FOR ... (34 E 39 CORRESPONDEM A DUAS TECLAS, CONSULTE A TABELA ASCII PARA SABER QUAL TECLA CORRESPONDE) ENTAO...

If KeyAscii = 39 Or KeyAscii = 34 Then

 

TECLA =0 (NULA).

KeyAscii = 0

End If

End Sub

Compartilhar este post


Link para o post
Compartilhar em outros sites

O change ser apenas para saber quando o conteudo de dentro da TextBox foi alteradoJa o KeyPress ele captura a tecla digitada dentro da TextBox

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.