Hello,
Does anyone know the code I need to enter into the Input Mask Wizard so data entered is required to have First and Last name and be capitalized? For example: "John Doe"
Thank you,
Btw I'm very new to Access and am learning
-justair
Hello,
Does anyone know the code I need to enter into the Input Mask Wizard so data entered is required to have First and Last name and be capitalized? For example: "John Doe"
Thank you,
Btw I'm very new to Access and am learning
-justair
The First and Last names should be in different fields. You can *always* put them back together. As for capitalization, let the user do whatever they want and fix it in the AfterUpdate event using the StrConv() function.
Input mask not appropriate for variable data like names. There is no consistent pattern.
You can use code in textbox AfterUpdate event to correct the input for capitalization using StrConv() function.
EDIT: RG got in first this time.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Ok will do, thank you for the tip guys
Always glad to help.