U
UnknownJoe
I have a form that allows for data entry of high school courses. Within the
form is a field called Course_Name that I would like to apply vbPropercase so
any word(s) entered within the field are converted to "Capital Letters for
each word entered" - ex. introduction to physics = Introduction To Physics.
I put in the following code on the Course_Name field but it doesn't seem to
work. I entered data in the field and still no capital letters.
Private Sub Course_Name_AfterUpdate()
Me.Course_Name = StrConv(Me.Course_Name, vbProperCase)
End Sub
Would there be any problems caused by property settings within the form
itself?
Any help would be appreciated.
Thanks.
form is a field called Course_Name that I would like to apply vbPropercase so
any word(s) entered within the field are converted to "Capital Letters for
each word entered" - ex. introduction to physics = Introduction To Physics.
I put in the following code on the Course_Name field but it doesn't seem to
work. I entered data in the field and still no capital letters.
Private Sub Course_Name_AfterUpdate()
Me.Course_Name = StrConv(Me.Course_Name, vbProperCase)
End Sub
Would there be any problems caused by property settings within the form
itself?
Any help would be appreciated.
Thanks.