HI,
I created the code below to remove name from tex. For instance, a field contains Caffery(294643)
so i want to get rid of Caffery and get only the figures, but the problme that the code gives this result:
294643)
can anyone help to fixt it becasue i need only the figures.
I created the code below to remove name from tex. For instance, a field contains Caffery(294643)
so i want to get rid of Caffery and get only the figures, but the problme that the code gives this result:
294643)
can anyone help to fixt it becasue i need only the figures.
Code:
Private Sub Toggle2_Click()
Dim Begining_name As Integer
Dim End_name As Integer
Begining_name = InStr(1, urtext, "(") + 1
End_name = InStr(1, urtext, ")") - 1
urtext = Mid(urtext, Begining_name, 5)
End Sub
Comment