Estou usando essa função para abaixo para colocar o R$, e gostaria q o meu cursor, qdo estiver no TextBox: Vlr, já esteja posicionado no Len 4, como faço isso? Abaixo estou errando algo?
essa é a função no Change
If Len(txtVlr) = 0 Then
txtVlr = txtVlr + "R"
txtTelVlr.SelStart = 2
End If
If Len(txtVlr) = 1 Then
txtVlr = txtVlr + "$"
txtTelVlr.SelStart = 3
End If
If Len(txtVlr) = 2 Then
txtVlr = txtVlr + " "
txtTelVlr.SelStart = 4
End If
vlw