Re: Programming with Forms-Access 97Kal,, , I ended up doing something similar but using the OpenArgs function. I have to give credit where credit is due - I called my old boss to see what he thought. Following is what I ended up with:, , Dim strOpenRecord As String, , strOpenRecord = "SELECT * FROM [Query] " _, & " WHERE ClientName = '" _, & Me!cmb_ClientList.Value & "'", , DoCmd.OpenForm "[FormName]", , , , , , strOpenRecord, , In the new form I then set the RecordSource equal to the OpenArgs and it worked fine., , I'm not sure where the Type Mismatch came from, however, it has not popped up since. Thanks for the lesson, though. I will keep it in mind (and on file) in the future., , Stay cool down there in Hotlanta., , Skeech |