Sunday, May 8, 2011

Insertion of record at the end in the form while creating the new record...

In  Form -->datasource --> Properties --> StartPosition --> Last and
Override the Create method in the datasource as

public void create(boolean _append = false)
{
    _append = true;
    super(_append);
}

No comments:

Post a Comment