here's my sql statement.
condition = txtQueryBySoftware
strSQL = "SELECT [Report].[RUser], [Item].[IDevice], [Item].[IValue], [Item].[ID], [Report].[ID] FROM Report INNER JOIN Item ON [Report].[ID]=[Item].[ReportID]
WHERE (((Item.IPage) = 'Installed Programs')
And ((Item.IDevice) Like """ & condition & """));"
i tried adding the * and % but m not too sure where to add those wildcard characters
how to i change it such that it can return a range of answers?
eg. itype "visio" it shoud return me
MS visio 2000
MS visio 97 and so on.
thanks a million!
condition = txtQueryBySoftware
strSQL = "SELECT [Report].[RUser], [Item].[IDevice], [Item].[IValue], [Item].[ID], [Report].[ID] FROM Report INNER JOIN Item ON [Report].[ID]=[Item].[ReportID]
WHERE (((Item.IPage) = 'Installed Programs')
And ((Item.IDevice) Like """ & condition & """));"
i tried adding the * and % but m not too sure where to add those wildcard characters
how to i change it such that it can return a range of answers?
eg. itype "visio" it shoud return me
MS visio 2000
MS visio 97 and so on.
thanks a million!