[DUVIDA] ENCONTRAR STRING EM TEXBOX E AVISAR
Galera, estou com uma dúvida.
Alguém ai tem uma função para fazer o seguinte:
Eu vou ter:
2 textbox
1 commandbutton
Daà quero que o comandbutton acione a função de buscar em um text2 multiline a string que está no text1.
Como faço isso?
Abraços.
Alguém ai tem uma função para fazer o seguinte:
Eu vou ter:
2 textbox
1 commandbutton
Daà quero que o comandbutton acione a função de buscar em um text2 multiline a string que está no text1.
Como faço isso?
Abraços.
de uma maneira bem simples
coloque 02 textbox e 01 commandbutton no form
deixe o text1 com a propriedade multiline = True
e cole isto
coloque 02 textbox e 01 commandbutton no form
deixe o text1 com a propriedade multiline = True
e cole isto
Private Sub Form_Load()
Text1.Text = Text1.Text & [Ô][Ô]
Text1.Text = Text1.Text & [Ô]Se a Frase [Ô][Ô]em casa de ferreiro o espeto é de pau[Ô][Ô][Ô] & vbCrLf
Text1.Text = Text1.Text & [Ô]for verdadeira eu pergunto.[Ô] & vbCrLf
Text1.Text = Text1.Text & [Ô][Ô] & vbCrLf
Text1.Text = Text1.Text & [Ô]será que o Bill Gates usa o Linux?[Ô]
End Sub
Private Sub Command1_Click()
Dim PosINI As Integer
Dim PosFIM As Integer
PosINI = InStr(1, Text1, Text2)
PosFIM = Len(Text2.Text)
Text1.SelStart = PosINI - 1
Text1.SelLength = PosFIM
Text1.SetFocus
End Sub
Tópico encerrado , respostas não são mais permitidas