CancelUpdate message

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

    CancelUpdate message

    I have two subforms on this on main form.
    One subform contains relevant contact data for respective building jobs and
    the other subform contains pictures of the particular record.

    when using the navigation bar at the bottom of the screen to move from one
    record to another, I eventually get the following message:
    "Update or CancelUpdate without AddNew or Edit"
    It essentially prevents me from moving from record to record using the
    navigation bar.
    What is it telling me ?


  • Tom van Stiphout

    #2
    Re: CancelUpdate message

    On Thu, 16 Jun 2005 23:13:08 +1000, "Gary" <g45340@hotmail .com> wrote:

    Hit Ctrl+Break to break into the VBA code. You may see something like:
    rs.Update
    without a prior:
    rs.AddNew
    or:
    rs.Edit

    -Tom.

    [color=blue]
    >I have two subforms on this on main form.
    >One subform contains relevant contact data for respective building jobs and
    >the other subform contains pictures of the particular record.
    >
    >when using the navigation bar at the bottom of the screen to move from one
    >record to another, I eventually get the following message:
    >"Update or CancelUpdate without AddNew or Edit"
    >It essentially prevents me from moving from record to record using the
    >navigation bar.
    >What is it telling me ?
    >[/color]

    Comment

    Working...