Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 AddNew Method

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.Net Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
CurrencyManager..::.AddNew Method

Adds a new item to the underlying list.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic (Declaration)
Public Overrides Sub AddNew
Visual Basic (Usage)
Dim instance As CurrencyManager

instance.AddNew()
C#
public override void AddNew()
Visual C++
public:
virtual void AddNew() override
JScript
public override function AddNew()
ExceptionCondition
NotSupportedException

The underlying data source does not implement IBindingList, or the data source has thrown an exception because the user has attempted to add a row to a read-only or fixed-size DataView.

This method is supported only if the data source implements the IBindingList interface and the data source allows adding rows (AllowNew is true).

NoteNote:

This property was designed to allow complex-bound controls, such as the DataGrid control, to add new items to list.

You typically use this property only if you are creating your own control that incorporates the CurrencyManager. Otherwise, to add items if the data source is a DataView, use the DataView..::.AddNew method of the DataView class. If the data source is a DataTable, use the NewRow method and add the row to the DataRowCollection.

The following code example adds a new item to the list with the AddNew method.

Visual Basic
Private Sub AddListItem()
    ' Get the CurrencyManager for a DataTable.
    Dim myCurrencyManager As CurrencyManager = _ 
        CType(Me.BindingContext(DataTable1), CurrencyManager)
    myCurrencyManager.AddNew()
End Sub 'AddListItem

C#
private void AddListItem()
{
   // Get the CurrencyManager for a DataTable.
   CurrencyManager myCurrencyManager = 
   (CurrencyManager)this.BindingContext[DataTable1];
   myCurrencyManager.AddNew();
}


Visual C++
void AddListItem()
{

   // Get the CurrencyManager for a DataTable.
   CurrencyManager^ myCurrencyManager = dynamic_cast<CurrencyManager^>(this->BindingContext[ DataTable1 ]);
   myCurrencyManager->AddNew();
}


JScript
private function AddListItem()
{
   // Get the CurrencyManager for a DataTable.
   var myCurrencyManager : CurrencyManager = 
   CurrencyManager(this.BindingContext[DataTable1]);
   myCurrencyManager.AddNew();
}


Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker