Private Sub Command1_click()
Dim TextoAux As String, Texto As String
Dim I As Integer
Texto = ""
If Text2.Text = "" Then
Call MsgBox("Favor dar valor de encriptamiento", 16, "Warning")
Else
For I = 1 To Len(Text1.Text)
Text1.SelStart = I - 1
Text1.SelLength = 1
TextoAux = Text1.SelText
Texto = Texto + Chr$(Asc(TextoAux) Xor Text2.Text & Text3.Text & Text4.Text)
Next I
End If
Text1.Text = Texto
End Sub