how to delete multiple records from form in x++
SET Multiselect property to 'YES' in button properties.
override the clicked method in button methods.
public void clicked()
{
super();
Employee_ds.deleteMarked();
}
SET Multiselect property to 'YES' in button properties.
override the clicked method in button methods.
public void clicked()
{
super();
Employee_ds.deleteMarked();
}
Comments
Post a Comment