A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Disable Instant Search in Outlook 2007



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old June 17th 09, 04:38 PM posted to microsoft.public.outlook.program_vba
paresh
external usenet poster
 
Posts: 66
Default 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.

Ads
  #2  
Old June 17th 09, 05:23 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default 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.


  #3  
Old June 17th 09, 11:06 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default 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.



  #4  
Old June 18th 09, 07:24 AM posted to microsoft.public.outlook.program_vba
paresh
external usenet poster
 
Posts: 66
Default 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.




  #5  
Old June 18th 09, 07:25 AM posted to microsoft.public.outlook.program_vba
paresh
external usenet poster
 
Posts: 66
Default 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.



  #6  
Old June 18th 09, 07:27 AM posted to microsoft.public.outlook.program_vba
paresh
external usenet poster
 
Posts: 66
Default 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.



  #7  
Old June 18th 09, 03:12 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default 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


  #8  
Old June 18th 09, 03:15 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default 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


  #9  
Old June 18th 09, 07:17 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default 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.






  #10  
Old June 20th 09, 01:39 PM posted to microsoft.public.outlook.program_vba
pete
external usenet poster
 
Posts: 1
Default 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/

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro for Instant Search in new Window, failes Instant search (OL2 Eylon Outlook and VBA 4 February 5th 09 09:44 AM
Disable instant search prompt in Outlook 2007 via Group Policy KC Outlook - Installation 1 July 23rd 07 04:48 PM
2007 search box and instant search invite, remove them jeffrey Outlook - General Queries 2 February 28th 07 05:08 PM
Disable Instant Search Notification in Outlook 2007 Inari Outlook - Installation 3 February 10th 07 12:53 AM
Outlook 2007: Disable Instant Search [email protected] Outlook - General Queries 2 June 5th 06 08:51 PM


All times are GMT +1. The time now is 08:39 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-2025 Outlook Banter.
The comments are property of their posters.