mind you I'd expect that the problem is probably
strSQLQuery = "SELECT * From Clients where Client_Type=" & CType
if CType is a string / text column then it should be encased in quote or double quotemarks
strSQLQuery = "SELECT * From Clients where Client_Type=" & chr(34) & CType & chr(34)