How to update Form from report

vyanku
vyanku Member Posts: 791
I create report for processing. I want to update the form where I insert values after the processing. How can I do this?? :-k

Comments

  • MTC
    MTC Member Posts: 159
    Does the report create the form?

    If so, it's a simply matter of calling a function in the form from the report, if I understand you correctly.
  • ara3n
    ara3n Member Posts: 9,258
    my guess he runs the report from the form, and he needs to refresh the form.
    you need to add code after the report is run.

    report.runmodal(Report::"Item List");
    currform.update(false);
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • vyanku
    vyanku Member Posts: 791
    yes u r right I just want to refress the form after running the report.