Set dbVideoCollection = CurrentDb
Set rstVideos = dbVideoCollection.OpenRecordset("Products")
' Insert new record
rstVideos.AddNew
rstVideos("Title").Value = "Chim trang mo coi"
rstVideos("UPCId").Value = "CTMC"
rstVideos("MarketplaceASIN").Value = "12ctmc"
rstVideos("ProductGroup").Value = "VCC"
rstVideos("Manufacturer").Value = "VC"
rstVideos("Brand").Value = "C"
rstVideos("SmallImage").Value = "http://"
rstVideos.Update
Title:
VBA - MS Access - Create new record/row
Description:
Set dbVideoCollection = CurrentDb Set rstVideos = dbVideoCollection.OpenRecordset("Products") ' Insert new ...
...
Rating:
4