Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Outlook and VBA (http://www.outlookbanter.com/outlook-vba/)
-   -   Disable Instant Search in Outlook 2007 (http://www.outlookbanter.com/outlook-vba/91668-disable-instant-search-outlook-2007-a.html)

paresh June 17th 09 03:38 PM

Disable Instant Search in Outlook 2007
 
How to disable/remove/hide Instant Search in Outlook 2007 programmatically?
Is there any event that get fired when I press enter after entering search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.


Ken Slovak - [MVP - Outlook] June 17th 09 04:23 PM

Disable Instant Search in Outlook 2007
 
You would have to disable Instant Search via the registry, before Outlook
starts. That would completely disable it for all Outlook functions however,
so you then end up crippling any search functionality that requires Instant
Search.

There are no events like you want.

An alternative would be to remove the various buttons, menu items and ribbon
controls used to open an instant search but that would require designing
your own ribbon from scratch and users could still add that functionality
back via the QAT.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after entering search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.



Dmitry Streblechenko June 17th 09 10:06 PM

Disable Instant Search in Outlook 2007
 
Why would you want to do that?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after entering search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.




paresh June 18th 09 06:24 AM

Disable Instant Search in Outlook 2007
 
It has been taking whole lot of time to build the indexing and overloading
exchange server and morever, we have to install WDS to make it work. We have
disable the indexing but still users are complaining that Instant Search is
not working (ofcourse).

It would be nice if you could point me out the registry entry that I could
reset to disable Instant Search Text box or is there any Redemption event
that get fired when user press enter after inserting some search word in
Search TextBox?

Do we have any Windows API for it if it doesn't supported in Outlook object
model?

Thanks.


"Dmitry Streblechenko" wrote:

Why would you want to do that?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after entering search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.





paresh June 18th 09 06:25 AM

Disable Instant Search in Outlook 2007
 
Thanks Ken for your reply.

It would be nice if you could point me out the registry entry that I could
reset to disable Instant Search Text box.

I came to know that Outlook object model doesnt support Search Start event
but we can catch that event using Windows API. Could you please suggest me
some resource to read about this?

Thanks.
Paresh

"Ken Slovak - [MVP - Outlook]" wrote:

You would have to disable Instant Search via the registry, before Outlook
starts. That would completely disable it for all Outlook functions however,
so you then end up crippling any search functionality that requires Instant
Search.

There are no events like you want.

An alternative would be to remove the various buttons, menu items and ribbon
controls used to open an instant search but that would require designing
your own ribbon from scratch and users could still add that functionality
back via the QAT.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after entering search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.




paresh June 18th 09 06:27 AM

Disable Instant Search in Outlook 2007
 

An alternative would be to remove the various buttons, menu items and ribbon
controls used to open an instant search but that would require designing
your own ribbon from scratch and users could still add that functionality
back via the QAT.


Ken, this would also works for me. Could you please tell me how to start
with this.

Thanks for being there.
Paresh

"Ken Slovak - [MVP - Outlook]" wrote:

You would have to disable Instant Search via the registry, before Outlook
starts. That would completely disable it for all Outlook functions however,
so you then end up crippling any search functionality that requires Instant
Search.

There are no events like you want.

An alternative would be to remove the various buttons, menu items and ribbon
controls used to open an instant search but that would require designing
your own ribbon from scratch and users could still add that functionality
back via the QAT.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after entering search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.




Ken Slovak - [MVP - Outlook] June 18th 09 02:12 PM

Disable Instant Search in Outlook 2007
 
I have no idea about what window is being created when a search is started,
use Spy++ to find that out and then you can possibly close the window using
Win32 API calls. But I have no idea how that will interact with Outlook
itself, you'd have to experiment.

Look at the Outlook team blog for an article that appeared just the other
day about how the Google Apps Sync disables search, there's information
there about the registry settings.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"paresh" wrote in message
...
Thanks Ken for your reply.

It would be nice if you could point me out the registry entry that I could
reset to disable Instant Search Text box.

I came to know that Outlook object model doesnt support Search Start event
but we can catch that event using Windows API. Could you please suggest me
some resource to read about this?

Thanks.
Paresh



Ken Slovak - [MVP - Outlook] June 18th 09 02:15 PM

Disable Instant Search in Outlook 2007
 
Google for "ribbon start from scratch" or something like that to find a
number of articles on how to do that.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"paresh" wrote in message
...

An alternative would be to remove the various buttons, menu items and
ribbon
controls used to open an instant search but that would require designing
your own ribbon from scratch and users could still add that functionality
back via the QAT.


Ken, this would also works for me. Could you please tell me how to start
with this.

Thanks for being there.
Paresh



Dmitry Streblechenko June 18th 09 06:17 PM

Disable Instant Search in Outlook 2007
 
There is no special event that fires when search starts/stops.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"paresh" wrote in message
...
It has been taking whole lot of time to build the indexing and overloading
exchange server and morever, we have to install WDS to make it work. We
have
disable the indexing but still users are complaining that Instant Search
is
not working (ofcourse).

It would be nice if you could point me out the registry entry that I could
reset to disable Instant Search Text box or is there any Redemption event
that get fired when user press enter after inserting some search word in
Search TextBox?

Do we have any Windows API for it if it doesn't supported in Outlook
object
model?

Thanks.


"Dmitry Streblechenko" wrote:

Why would you want to do that?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after entering
search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.







pete June 20th 09 12:39 PM

Disable Instant Search in Outlook 2007
 

great tip from me (irony on):

install google apps, that will kill your outlook search very effective
;)
(irony off)

i do not know, but i need to search a lot in outlook, i have so much
mails that it is not possible for me to overview all that.
do you search always "by hand"? or do you want to disable outlook
search because you have another search tool?

greets




"paresh" wrote in message
...
How to disable/remove/hide Instant Search in Outlook 2007
programmatically?
Is there any event that get fired when I press enter after

entering
search
word in Instant Search text box?

Any help related to this topic will be appreaciated.

Thanks in Advanced.



[/color][/color]


--
pete
http://forums.slipstick.com/



All times are GMT +1. The time now is 06:11 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com