FormDataSource.create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
create() |
Creates a new record in the data source. |
create(Boolean) |
create()
Creates a new record in the data source.
public:
override void create();
public override void create ();
override this.create : unit -> unit
Public Overrides Sub create ()
Remarks
This method is called when a user creates a new record in a data source, such as by using the default shortcut key for insertion (CTRL+N). The create method can be overridden on a form data source. Right-click the Methods node under the data source, and then select Override Method > create.
Applies to
create(Boolean)
public:
override void create(bool _append);
public override void create (bool _append);
override this.create : bool -> unit
Public Overrides Sub create (_append As Boolean)
Parameters
- _append
- Boolean
A Boolean value that indicates whether to insert the record after or before the current cursor position. If it is set to true, the new record is inserted after the current record.