StrConv (1 Viewer)

deepbreath

Registered User.
Local time
Today, 11:01
Joined
Apr 18, 2001
Messages
73
i am trying to convert first letter of "NAME" to capital by using
[NAME] = StrConv([NAME], 3)
But when i run the form, it gives error that "the property is read only, it cannot be set". can you help me
thankx
 

charityg

Registered User.
Local time
Today, 11:01
Joined
Apr 17, 2001
Messages
634
Try
me!name=UCase(left([Name],1) & Mid([Name],2)
 

KevinM

Registered User.
Local time
Today, 11:01
Joined
Jun 15, 2000
Messages
719
The problem is your field called 'Name'. This is a reserved word in Access and I Recommend that you change it to something else.

This WILL cause you problems.

HTh
 

Users who are viewing this thread

Top Bottom