Hi,
I am quite new to
VB.NET. Is there a way to replace a character with an integer. The following is my code but I don't see any change.
Private Sub txtInput_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtInput.TextChanged
Dim intNum As Integer
Dim strInput As String
If (txtInput.Text = "H") Then
Replace(txtInput.Text, "H", "3")
End If
End Sub
I am trying to replace the H with a 3. Any help is greatly appreciated!
Thanks & Regards,
Serene