Page 2 of 2 FirstFirst 12
Results 16 to 17 of 17
  1. #16
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,445


    But first, in the current versions of access, or with common utilities that people use, is there an reason to NOT use the tag property for storing the translation codes?
    very much doubt tab property will disappear. As for storing transaction codes - depends how your translation code actually works, there are many different ways of managing translations, my method doesn't use tags.

    Has Microsoft added any optional "user" fields to the objects, so that users can have their own protected area for this kind of storage? If so, how can those be made visible?
    No

    you can have tags store more than one value if you need to use them for different things - store as a csv or use a pipe or other character. Then a bit of code to split it - will need error handling if one control has one element and another has two. An example might be something like this air code

    Code:
    function gettTagvalues(byVal tagStr as string, tag1 as string, tag2 as string)
    on error resume next
    
        tag1=split(tagStr,",")(0)
    
        'if no second element assign a zls to tag2
        tag2=split(tagStr,",")(1)
        if err then tag2=""
    
    end function

  2. #17
    Micron is offline Virtually Inert Person
    Windows 10 Access 2016
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    12,818
    I doubt that property would ever be removed given the aftermath that would result. It's possible to have csv type tags & retrieve the nth value in the tag string in code. A table is probably better for more complex and wide spread use of values used for things like language options.

    Validation in the sense used means at least ensuring required fields are filled in. One can also validate that values are correct; e.g. field contains a date or a value between upper and lower limits for example.

    EDIT
    Hmm, sometimes I don't see that comments have already been addressed.
    I think that has something to do with where I land when following an email link - I don't know. I guess at least my last post supports what was already mentioned.
    The more we hear silence, the more we begin to think about our value in this universe.
    Paraphrase of Professor Brian Cox.

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 3
    Last Post: 12-11-2014, 11:26 AM
  2. All Textboxes Read-Only on Form
    By cbrsix in forum Programming
    Replies: 5
    Last Post: 04-16-2013, 01:47 PM
  3. Replies: 5
    Last Post: 08-28-2012, 03:23 PM
  4. Form - CANNOT EDIT TEXTBOXES !!!
    By dbalilti in forum Access
    Replies: 5
    Last Post: 07-05-2012, 12:15 PM
  5. Replies: 14
    Last Post: 07-19-2011, 04:00 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