Pass More than one Table or Datasource to another form through Args ?

Hai …

In my scenario, I should pass one field id of two different tables or datasources from one form to another form. Using these field id, i want to moderate records of second form.

Is it possible to send more than one table or datasource from one form to another form by using Args(); I’ve used this codes, which is mentioned below; i know it is not working properly. Pls Reply me with simple examples.

In Button Click :

MenuFunction Mnfun;

Args args1 = new Args();

// Args args2 = new Args();

super(); Mnfun = new MenuFunction(menuitemdisplaystr(LinkRentalQuotationCostDetails), MenuItemType::Display); args1.record(EquipmentItemsView);

args1.record(EquipmentsReceivedQuotation);

Mnfun.run(args1);

// LinkRentalQuotationCostDetails denotes another form.

Thanks for ur Consideration…

Regards,

Mohamed Hussain

Hi Mohamed,

Normally I would not use args to pass multiple parameters. Can you use containers?

Regards,

Hi Mohamed,

Isn’t it a possible/easier way to simply get the caller form from the called form. This way you could get every element of the caller form.

Regards,

Gergő Sipos