Answers for "find and replace textbox"

VBA
1

find and replace textbox

If TextBox1.Text.Contains("a") Then
        TextBox1.Text = TextBox1.Text.Replace("a", "c")
    End If
Posted by: Guest on May-21-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language