I have a form frmComputers within that form is subform sfrmSoftware which contains all the software installed on each computer. I would like to be able to open frmComputer with the WHERE clause in DoCmd.OpenForm to show all computers which have a certain software title installed. Is it possible to do something like this:
stDocName = "frmComputers"
stLinkCriteria = "[Forms]![frmComputers]!
[sfrmSoftware].Form![SoftwareTitle] Like " & chr(34)
& "*Windows 2000*" & chr(34)
Do.Cmd OpenForm stDocName, , , stLinkCriteria
and have it search through all the records in sfrmSoftware under each computer for the title "Windows 2000"?
Any help would be appreciated.
-Al
stDocName = "frmComputers"
stLinkCriteria = "[Forms]![frmComputers]!
[sfrmSoftware].Form![SoftwareTitle] Like " & chr(34)
& "*Windows 2000*" & chr(34)
Do.Cmd OpenForm stDocName, , , stLinkCriteria
and have it search through all the records in sfrmSoftware under each computer for the title "Windows 2000"?
Any help would be appreciated.
-Al