How to update Form from report

vyankuvyanku 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

  • MTCMTC 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.
  • ara3nara3n Member Posts: 9,256
    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
  • vyankuvyanku Member Posts: 791
    yes u r right I just want to refress the form after running the report.
Sign In or Register to comment.