Private Sub Command4_Click()
Dim db As Database
Dim DBrs As DAO.Recordset
Set db = CurrentDb
Set DBrs = db.OpenRecordset("tbl_test") 'ชื่อตารางที่ต้องการเก็บข้อมูล
DBrs.AddNew
DBrs![DateTime] = txtDateTime.Value 'ชื่อฟิวส์ที่ตาราง และชื่อtext box ที่ฟอร์ม
DBrs![Status] = Check5.Value 'ชื่อฟิวส์ที่ตาราง และชื่อtext box ที่ฟอร์ม
DBrs.Update
'เคลียร์ข้อมูล
Me.txtDateTime = ""
Me.Check5 = ""
End Sub
น่าจะประมาณนี้ครับ ไม่แน่ใจตรงความต้องการหรือเปล่าครับ