We want to Replace some text from a textbox (multiline) with = the text in our combobox and we want to replace it with its new one (in a textbox)
heres our code
so that says, If the textbox(multiline) contains whats in our combobox, then replace it with the text in textbox1..
but its not working..?
heres our code
VB.NET:
If TextBox7.Text.Contains(ComboBox1.Text) Then
TextBox7.Text.Replace(ComboBox1.Text, TextBox1.Text)
End If
so that says, If the textbox(multiline) contains whats in our combobox, then replace it with the text in textbox1..
but its not working..?