Hey, Everybody
I have a database and i want to capitalize the first letter of each word in the field (SUBJECT) and i used the code l below
Private Sub Subject_AfterUpdate()
Me.[Subject] = StrConv(Me.Subject, vbProperCase)
End Sub
but I'm using 2 languages (Arabic, English) and the code is working with English but when i type in Arabic the words become (????????)
how to make the code work when i type in English without affecting the other language
thanks,,,
I have a database and i want to capitalize the first letter of each word in the field (SUBJECT) and i used the code l below
Private Sub Subject_AfterUpdate()
Me.[Subject] = StrConv(Me.Subject, vbProperCase)
End Sub
but I'm using 2 languages (Arabic, English) and the code is working with English but when i type in Arabic the words become (????????)
how to make the code work when i type in English without affecting the other language
thanks,,,