Results 1 to 2 of 2
  1. #1
    danvadis is offline Novice
    Windows 8 Access 2007
    Join Date
    Sep 2015
    Location
    Accra, Ghana, West Africa
    Posts
    5

    Question Using mix Case


    what do I do so that when I type into a field the first character becomes an Upper case automatically.

  2. #2
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 8 Access 2013
    Join Date
    Aug 2013
    Posts
    7,862
    You want the StrConv() function and the argument vbProperCase
    Code:
    Dim strSample As String
    strSample = Me.txtSample.Value
    Me.txtSample.Value = StrConv(strSample, vbProperCase)

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 3
    Last Post: 10-27-2014, 07:37 AM
  2. Case for in case field corrupt
    By Ruegen in forum Forms
    Replies: 9
    Last Post: 08-03-2014, 07:56 PM
  3. CASE in SQL
    By alka in forum Access
    Replies: 12
    Last Post: 11-27-2013, 04:15 PM
  4. Replies: 5
    Last Post: 10-23-2012, 03:55 PM
  5. Case when
    By krufruf in forum Queries
    Replies: 2
    Last Post: 07-20-2012, 03:59 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums