thegameoflife
Programmer
I need to update a table based on "ID" making "ID2" from the attached code.
I'm using the code to change ID.
I'm using the code to change ID.
Code:
Private Sub Command0_Click()
Dim a As String
Dim i As Integer
Dim str2 As String
a = Me.ID
For i = 1 To Len(a)
str2 = str2 + Chr(Asc(Mid(a, i, 1)) + Asc("A"))
Next i
End Sub