AddNew Method Example

Source: Internet
Author: User

 

This example uses the AddNew method to create a new record with the specified name. The AddName function is required for this procedure to run.

Sub AddNewX ()

Dim dbsNorthwind As Database
Dim rstEmployees As Recordset
Dim strFirstName As String
Dim strLastName As String

Set dbsNorthwind = OpenDatabase ("Northwind. mdb ")
Set rstEmployees = _
DbsNorthwind. OpenRecordset ("Employees", dbOpenDynaset)

Get data from the user.
StrFirstName = Trim (InputBox (_
"Enter first name :"))
StrLastName = Trim (InputBox (_
"Enter last name :"))

Proceed only if the user actually entered something

For both the first and last names.
If strFirstName <> "" and strLastName <> "" Then

Call the function that adds the record.
AddName rstEmployees, strFirstName, strLastName

Show the newly added data.
With rstEmployees
Debug. Print "New record :"&! FirstName &_
""&! LastName
Delete new record because this is a demonstration.
. Delete
End

Else
Debug. Print _
"You must input a string for first and last name! "

End If

RstEmployees. Close
DbsNorthwind. Close

End Sub

Function AddName (rstTemp As Recordset ,_
StrFirst As String, strLast As String)

Adds a new record to a Recordset using the data passed
By the calling procedure. The new record is then made
The current record.
With rstTemp
. AddNew
! FirstName = strFirst
! LastName = strLast
. Update
. Bookmark =. LastModified
End

End Function



Related Article

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.