Edit Method Example

Source: Internet
Author: User

 

This example uses the Edit method to replace the current data with the specified name. The EditName procedure is required for this procedure to run.

Sub EditX ()

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

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

Store original data.
StrOldFirst = rstEmployees! FirstName
StrOldLast = rstEmployees! LastName

Get new data for record.

StrFirstName = Trim (InputBox (_
"Enter first name :"))
StrLastName = Trim (InputBox (_
"Enter last name :"))

Proceed if the user entered something for both fields.
If strFirstName <> "" and strLastName <> "" Then
Update record with new data.
EditName rstEmployees, strFirstName, strLastName

With rstEmployees
Show old and new data.
Debug. Print "Old data:" & strOldFirst &_
"" & StrOldLast
Debug. Print "New data :"&! FirstName &_

""&! LastName
Restore original data because this is
Demonstration.
. Edit
! FirstName = strOldFirst
! LastName = strOldLast
. Update
End

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

RstEmployees. Close
DbsNorthwind. Close

End Sub

Sub EditName (rstTemp As Recordset ,_
StrFirst As String, strLast As String)

Make changes to record and set the bookmark to keep

The same record current.
With rstTemp
. Edit
! FirstName = strFirst
! LastName = strLast
. Update
. Bookmark =. LastModified
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.