how i generate new line in the form without using the new icon?

Hi,

In my Form , i have one checkbox. after clicking the checkbox, i need to generate the new line in the form.

what are the possibilities are there?

Regards,

smiley

Hi,

Need further clarification on this that whether the form is an existing form or a customized form.

But I think to create a new line in any of the AX forms, you can either click on create new icon or press ‘Ctrl+n’.

Hi Gaurav,

This is new form created by meself. After clicking the chenckbox, new line will create. how can?

Regards,

smiley

modified()

while select declaretablename
where declaretablename.field == tablename.field
{

newfiledtablebame.field = declaretablename.field;

declaretablename.insert();
table_ds.research();

}

Hi sv,

now it’s working . thanks…