![]() |
#1
|
|||
|
|||
![]()
hello
we use outlook in our company for send/Receive message and letters I want assign one unique number to each message or mail that send or receive (as a ID for future Reference or search) Is it possible ...??? Is there a solution??? with thanks |
#2
|
|||
|
|||
![]()
You can find third party software.
e.g. Bells & Whistles - http://www.emailaddressmanager.com/o.../tracking.html You could try some VBA. This is the tricky part that generates the unique number. http://www.vboffice.net/sample.html?...5&cmd=showitem Code:
Public Function GetNextID() As Long Dim lCurrID As Long Dim File As String File = "C:\Sample.txt" lCurrID = Val(ReadFile(File)) lCurrID = lCurrID + 1 WriteFile File, CStr(lCurrID), False GetNextID = lCurrID End Function |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Labeling sequential forms with a unique number | krau0231 | Word | 1 | 10-18-2012 03:33 PM |
'Auto' fields, I want to create a unique ID... | kateattat | Word | 7 | 07-10-2012 05:10 AM |
![]() |
benjii19 | Word | 1 | 03-08-2011 12:38 AM |
![]() |
bignick270 | Excel | 1 | 05-17-2009 05:40 AM |