Results 1 to 4 of 4
  1. #1
    taimysho0 is offline Competent Performer
    Windows XP Access 2000
    Join Date
    Nov 2011
    Posts
    286

    Convert VALUE in Textbox to CAPS in TABLE

    Hello, this is a simple question but i cant figure out how to do it. How do i get values that a user enters into a textbox to show up as all caps in the table it is linked to?


    i used ">" for the format in the textbox and in the table format, but when i click in the cell of the main table, it changes it from caps to lower case (which is what the user originally entered it as). How do i make it stay as caps? thanks!

  2. #2
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 64bit Access 2010 32bit
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    ">" is simply a display formatting option. You will need to use the UCase() function to actually change the value.

  3. #3
    taimysho0 is offline Competent Performer
    Windows XP Access 2000
    Join Date
    Nov 2011
    Posts
    286
    do i put that under "format" in the textbox property? sorry im not too proficient with access programming..

  4. #4
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 64bit Access 2010 32bit
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    Format properties are simply visual display properties. You will need code in the AfterUpdate event similar to:
    Me.YourTextBoxName = UCase(Me.YourTextBoxName)
    ...using your real value for YourTextBoxName of course.

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

Similar Threads

  1. Adding Textbox value into Table
    By sikhinvestor in forum Access
    Replies: 2
    Last Post: 06-05-2014, 07:29 AM
  2. Place a table value in a textbox
    By justhininabouti in forum Programming
    Replies: 2
    Last Post: 11-26-2011, 10:56 PM
  3. Replies: 3
    Last Post: 08-18-2011, 07:31 AM
  4. Convert form to Table or Add Field to Table
    By jlclark4 in forum Forms
    Replies: 1
    Last Post: 12-15-2010, 01:52 PM
  5. Replies: 7
    Last Post: 11-13-2010, 08:08 AM

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