Hi
Dim strsearch, strsql As String
strsearch = InputBox("Search For", "Search Input Box")
strsql = "SELECT * FROM m_itemmaster WHERE icode LIKE " & Chr(34) & strsearch & Chr(34)
Openrstitem (strsql)
Secondly i want if user enters * in inputbox it fills listview with all records , no filter.
What value i enter it does not search where as record exists
Thanks
Dim strsearch, strsql As String
strsearch = InputBox("Search For", "Search Input Box")
strsql = "SELECT * FROM m_itemmaster WHERE icode LIKE " & Chr(34) & strsearch & Chr(34)
Openrstitem (strsql)
Secondly i want if user enters * in inputbox it fills listview with all records , no filter.
What value i enter it does not search where as record exists
Thanks