Hi all,
You know the code line in the LookUp trigger in a field in a form:
IF FORM.RUNMODAL(FORM::"MyList", DatafieldPrivate) = ACTION::LookupOK THEN
BEGIN
My challenge is - under very special specified conditions - to suppress the data it retrieves from the Form when it returns to the "parent-form".
Anyone got an idea ?
Thanks in advance
0
Comments
OldVale := value;
IF FORM.RUNMODAL THEN BEGIN
END;
IF Conditions THEN
Field := OldValue;
Maybe?