R
Richard
I am using the code from Marshall Barton's post above...
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb()
Set rs = db.OpenRecordset("Defaults")
rs.FindFirst "rs.FieldName = ""P1Bill1Name"""
Me.P1Bill1Name.DefaultValue = """ & rs!FieldDefault & """""
I get this error at the rs.FindFirst line
Run-Time Error 3251 Operation is not supprted for this type of object
Could you please help me with this?
Thanks,
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb()
Set rs = db.OpenRecordset("Defaults")
rs.FindFirst "rs.FieldName = ""P1Bill1Name"""
Me.P1Bill1Name.DefaultValue = """ & rs!FieldDefault & """""
I get this error at the rs.FindFirst line
Run-Time Error 3251 Operation is not supprted for this type of object
Could you please help me with this?
Thanks,