Form refresh issue

manjusreemanjusree Member Posts: 79
Hi,

I've searched the entire forum and found a couple of posts with the same name. But still can't resolve my issue.

Let me narrate my problem. I've a form with say, 5 records. When I enter Quantity in the 5th record, I want a boolean field named 'Stop' to be updated in all the 5 records. I'm getting it correctly, but what the issue is I've to place cursor in all the 5 records to see its updated, means the form is not getting refreshed.

My code is in Quantity -'Onvalidate' trigger of the table. From here I'm updating 'Stop' using Validate function.

I tried out Currentform.update(false) in OnAfterValidate of 'Quantity' and 'Stop' in form, but no use.

Any knid of help would be appreciated.

Thanks,
Manju

Comments

  • prototyperprototyper Member Posts: 70
    Have you tried inserting a SELECTLATESTVERSION prior to the CurrForm.UPDATE ?
    Sleep on it... The best solutions come at 2am
  • aseigleaseigle Member Posts: 207
    Set the TimerInterval property on the form (in milliseconds) and add CURRFORM.UPDATE to OnTimer
Sign In or Register to comment.