Access Procedures

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • tmgHLP

    Access Procedures

    Does anyone know what the "Me![....] means in the statement below or
    where I can find information on how this feature is used? Its in a
    OnUpdate event procedure in an Access Form"

    Is it a Access Statement, VBA or an SQL command???

    Me![CalcValue] = Me![txtCalcValue]
  • Wayne Morgan

    #2
    Re: Access Procedures

    "Me" is just short for the form or report that the code is running on. If
    you refer to the form or report from elsewhere you have to use longer
    notation.

    Example:
    Forms!MyForm![txtCalcValue]
    or
    Reports!MyRepor t![txtCalcValue]

    --
    Wayne Morgan
    MS Access MVP


    "tmgHLP" <tmgHLP@hotmail .com> wrote in message
    news:8c1c12d5.0 312061058.39f66 2b5@posting.goo gle.com...[color=blue]
    > Does anyone know what the "Me![....] means in the statement below or
    > where I can find information on how this feature is used? Its in a
    > OnUpdate event procedure in an Access Form"
    >
    > Is it a Access Statement, VBA or an SQL command???
    >
    > Me![CalcValue] = Me![txtCalcValue][/color]


    Comment

    Working...