![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]() 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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]() 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 |
Display Modes | |
|
|
![]() |
||||
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 |