Results 1 to 2 of 2

Thread: [RESOLVED] How to store the value as capital letter?

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Feb 2007
    Location
    Malaysia
    Posts
    1,370

    Resolved [RESOLVED] How to store the value as capital letter?

    I have problem here, How to store the value as a capital letter in the database if I typing the value "a" and it store in the database as "A" .

    Code:
     'untuk kemas kini data
             With InfoRS6
              .Fields("Blok").Value = Text3.Text
              .Update
             End With

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: How to store the value as capital letter?

    Code:
    .Fields("Blok").Value = UCase(Text3.Text)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width