How to: Specify the default value for a new row in the Windows Forms datagridview Control

Source: Internet
Author: User

When the application fills in the default value for the newly added row, it makes data input more convenient. Using the datagridview class, you can use the defavaluvaluesneeded event to fill in the default value. This event is triggered when the user enters the new record row. When the code processes this event, you can use the selected value to fill the required cells.

The following code example shows how to use the defaultvaluesneeded event to specify the default value of a new row.

Example
Copy code in Visual Basic
Private sub datagridview1_defavaluesneeded (byval sender as object ,_
Byval e as system. Windows. Forms. datagridviewroweventargs )_
Handles datagridview1.defavaluvaluesneeded

With E. Row
. Cells ("region"). value = "wa"
. Cells ("city"). value = "Redmond"
. Cells ("postalcode"). value = "98052-6399"
. Cells ("region"). value = "Na"
. Cells ("country"). value = "USA"
. Cells ("customerid"). value = newcustomerid ()
End

End sub

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.