Invisble Data

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DrogoNevets
    New Member
    • Dec 2007
    • 2

    Invisble Data

    When adding a value to a sub form (and in turn a sub table) the data isnt initially display until you navigate to another record and back

    it shows that the record has been added but not the data. you just get a blank field in the sub form

    anyone know why and/or a way around this issue??
  • MindBender77
    New Member
    • Jul 2007
    • 233

    #2
    Originally posted by DrogoNevets
    When adding a value to a sub form (and in turn a sub table) the data isnt initially display until you navigate to another record and back

    it shows that the record has been added but not the data. you just get a blank field in the sub form

    anyone know why and/or a way around this issue??

    Do you have the main form refreshing after adding the value/record?

    JS

    Comment

    • jaxjagfan
      Recognized Expert Contributor
      • Dec 2007
      • 254

      #3
      If the data is being added/deleted/changed to a control (I.E. a textbox) via the user or code - it is immediately changed in view. If a record is being updated behind the scenes after an action occurs then the forms need to be refreshed to show the changes.

      Add the following to your process

      Code:
      Me.Refresh

      Comment

      Working...