Hello everybody
I have a Form with a subform inside
The records shown in the subform are only updated if i go to the next record and come back or if i close the form and reopen it.
I think it's an update problem but how to update records shown in the subform?
0
Comments
You will find a bunch of posts
http://www.mibuso.com/forum/search.php
http://www.BiloBeauty.com
http://www.autismspeaks.org
The subform is displayed if a check box is checked.
I typed just this "//" on the trigger OnPush() of this check box and the records shown in the subform are updated!!!!!!!!!!!How can this be possible?
Seriously though, you should scrap the oddity you've found and follow best practices by using the following syntax like everyone else...
Caller.SubformVar.NameOfSubformControl.FunctionToDoYourTask();
Good luck,
Andy Sandefer
Or Create a button and just put // on the On Push trigger, and when I push the button, the subform updated.
I tried to call subform function -> currform.update(true)
from header form in the event on validate (field that link the subform),
still can't make it work.
Anyone know how to solve this ?