THanks for reply. As it happens it thats what I want, every word to have first letter capital. I used this line of code to do it, as an after update.
Me.[Company_Name] = StrConv(Me.[Company_Name], vbProperCase)
But I have a lot of records, entered using a query, so they arent getting an "after update", which is where i put the code. I tried an "on enter" but only did it to some of them, so now i want a button (which i have put there) and "on click" it goes through and changes the field text first letter:
Private Sub Command39_Click()
New_Listings.Form.[Company_Name] = StrConv(New_Listings.Form.[Company_Name], vbProperCase)
End Sub
But it doesnt work. I'm sure its something to do with the New_Listings.Form.[Company_Name]
bit, but cant tell what, and also i am worried that it will also mean, I have to go through every record and click the button. Is there a way I can make a button, do it to every record.
Or I just though, can a query do this for me???
Thanks
alex