Hi
I have a combo box on a form which has values when a user selects a value i am running a SQL statement which brings the data.
I was wondering whether i could clone that recordset so the form is populate with the cloned data?
i have the following code
I would appreciate any help, to achieve this?
thanks
Mo
I have a combo box on a form which has values when a user selects a value i am running a SQL statement which brings the data.
I was wondering whether i could clone that recordset so the form is populate with the cloned data?
i have the following code
Code:
Dim rsFoundSerachDescription As DAO.Recordset
Dim strSQl As String
strSQl = "SELECT ECRDatabase.*, ECRDatabase.ED_PartDescription " & _
"FROM ECRDatabase " & _
"WHERE (((ECRDatabase.ED_PartDescription)=" & Chr(34) & Combo484 & Chr(34) & ")); "
Set rsFoundSerachDescription = PartDescriptionSerach(strSQl)
I would appreciate any help, to achieve this?
thanks
Mo