I have a pop-up form with six fields on it in a layout region, each with the same name as a field on the form from which the pop-up is launched.
The pop-up is launched using:
@DialogBox( “Popup”;[AutoHorzFit] : [AutoVertFit]; “Popup” )
Any entry done on the pop-up is reflected on the main form. On closing the pop-up I run:
Call uidoc.SpellCheck()
This properly performs the spell-check on each of the six fields and corrects any misspellings. However, the values of the fields on the main form do not change to reflect the changes made during spell-check. When re-opening the pop-up, words are again misspelled.
Any ideas?