I'm using an ADO recordset to search for record and then open a form based on the result...
rs3.movefirst
theID = rs3("ID")
DoCmd.OpenForm "theForm", acNormal, , "[ID] = ' & theID & '", acFormEdit
The problem is with the DoCmd.Openform line. Any ideas? How can I open a form based on the result of the recordset?
thanks
ft
Set the gearshift for the high gear of your soul, you've got to run like an antelope, out of control.
rs3.movefirst
theID = rs3("ID")
DoCmd.OpenForm "theForm", acNormal, , "[ID] = ' & theID & '", acFormEdit
The problem is with the DoCmd.Openform line. Any ideas? How can I open a form based on the result of the recordset?
thanks
ft
Set the gearshift for the high gear of your soul, you've got to run like an antelope, out of control.