Windows desktop search is an incredibly usefull function, improved in vista, and better again in 7. For those that don't know, in addition to doing searches for simple strings you know are in either a document or email, you can also be much more specific with it by adding control tags, e.g. from:phil, subject:holidays, author:, date: etc, etc, etc.
Here's a couple of links to help you drive this great function:
I regularly use it to find a email, or a document across all the archives in miliseconds.
Which leads me to my suggestion. Building linking into this in the item link functionality, which currently supports URL's, items, folders, etc. Of course you already can, but constructing the query string yourself, if you start with search-ms:query=......., using the new search engine functions (I have already allocated one to this), but it would be great to be able to do this in items also, especially for emails.
I have been using the outlook:GUID form or url's to link items to specific emails for ages. Problem is, if you ever move an email the guid gets changed, and the links are permanently stuffed. By building item linking using the search-ms: functionality would be far better. Of course building this would also enable a lof of other great search & find through one's documents & emails.
Pierre, what do you think?
Comments
Private Declare Function EmptyClipboard Lib "user32" () As Long
Private Declare Function CloseClipboard Lib "user32" () As Long
Public Sub CopyToClipboard(strToCopy As String)
Dim dataObject As MSForms.dataObject
Dim WaitUntil As Double
Dim I
Set dataObject = New dataObject
dataObject.SetText strToCopy
TRYAGAIN:
On Error GoTo ERRHANDLER
dataObject.PutInClipboard
Exit Sub ' if success then exit
ERRHANDLER:
Wait 2
Resume TRYAGAIN
' GetLastError
' dataObject.PutInClipboard
End Sub
Sub Clear_Clipboard()
OpenClipboard (0)
EmptyClipboard
CloseClipboard
End Sub