Hi all,
I had try writng the following statement in two access version, but it only worked in access 97.
Private Sub command0_click()
Dim frm As Form
Set frm = [Forms]![form1]
Dim dbs1 As Database
Dim rst1 As Recordset
Dim mrst As Recordset
Dim SQL As String
Set dbs1 = CurrentDb()
*Set rst1 = dbs1.OpenRecordset("test", dbOpenDynaset, dbAppendOnly)
Set rst1 = dbs1.OpenRecordset("test"
With rst1
.AddNew
![nric] = "1234567"
! = "djkjs"
![Text] = "KenKo"
.Update
End With
End Sub
How could make word in access 2000? Help!!!!!
I had try writng the following statement in two access version, but it only worked in access 97.
Private Sub command0_click()
Dim frm As Form
Set frm = [Forms]![form1]
Dim dbs1 As Database
Dim rst1 As Recordset
Dim mrst As Recordset
Dim SQL As String
Set dbs1 = CurrentDb()
*Set rst1 = dbs1.OpenRecordset("test", dbOpenDynaset, dbAppendOnly)
Set rst1 = dbs1.OpenRecordset("test"
With rst1
.AddNew
![nric] = "1234567"
! = "djkjs"
![Text] = "KenKo"
.Update
End With
End Sub
How could make word in access 2000? Help!!!!!