Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"The query contained only ignored words. " Error

Status
Not open for further replies.

rohitpabby

Programmer
Aug 13, 2001
27
IN

Hi! I am using Query and Utility objects to search for words in ASP file querying on Microsft Index Server. I getting following error when I search for word "the".

Error Type:
CreateRecordset (0x80041605)
The query contained only ignored words.

Is it possible to trap this error and give a user friendly message?

Please help...

Thanks.
Warm Regards,
Rohit Pabby.
 
do an on error resume next before the statement that produces that error, then get the error number, once you know the error number you can write:

If err.number = ... then
'friendly message
end if
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top