Skip to main content

UDT Handler form not changing to update when field changed from a SQL report.

Comments

1 comment

  • Keshava Best

    Hi Paul,

    Here is a workaround - I have experienced the same issue.


    Create a Universal Function type Dynamic Code with the following command:
    form.Mode = BoFormMode.fm_UPDATE_MODE;

    From your Universal Function Macro that sets the value, add the code:
    If $[$1.0.0] = 'OK'
    BEGIN
        UF(UF-0XX); //Set Form Mode Update
    END

    Where 0XX is the Universal Function with the Dynamic Code.

    Keshava

Please sign in to leave a comment.