B
Brad Fuller
The following code:
Dim pt1 As Recordset, strRSName As String
strRSName = "Select [*] From Patients Where [PatID] = '" &
[PatID] & "'"
Set pt1 = curdb.OpenRecordset(strRSName, dbOpenDynaset)
when executed, gives the "too few parameters. Expected 1"
runtime error '3061' message.
when I highlight 'OpenRecordset' and press F1 key, no help
is displayed.
Why the error, and why is there no help displayed?
Thanks in advance
Brad
Dim pt1 As Recordset, strRSName As String
strRSName = "Select [*] From Patients Where [PatID] = '" &
[PatID] & "'"
Set pt1 = curdb.OpenRecordset(strRSName, dbOpenDynaset)
when executed, gives the "too few parameters. Expected 1"
runtime error '3061' message.
when I highlight 'OpenRecordset' and press F1 key, no help
is displayed.
Why the error, and why is there no help displayed?
Thanks in advance
Brad