i have a parent form... in Action pane i have newButton...when i press it opens a form that has the same data source as parent... i did this code in clicked() method
void clicked()
{
Args args = new Args();
FormRun formRun;
super();
args.name(formstr(ChildForm));
formRun = classFactory.formRunClass(args);
formRun.init();
formRun.run();
formRun.wait(true);
}
The problem is that when i open the childForm it opens with data from the parentForm...
i need that ChildForm should be the form where i create records and write the records in ParentForm
please i need help!!!
*This post is locked for comments
I have the same question (0)