Hi Bikram,
Try something like this:
Form.Freeze(true); Form.DataSources.DBDataSources.Item(YOUR_DATASOURCE_NAME).Clear(); Form.DataSources.DBDataSources.Item(YOUR_DATASOURCE_NAME).InsertRecord(0); //Open a null record in your datasource Form.Update(); Form.Freeze(false);
Hope it helps.
Best regards,
Diego Lother