| Thread | Last Post | Replies |
|
| Access Contact Item properties in loop | 30 Apr 2007 22:16 GMT | 1 |
I need to extract all of the regular contact fields from Outlook and I'm trying to figure out how to just grab all of the items of a ContactItem less the Objects in a loop. Is this possible? I'm coding in VB6 Instead of
|
| Insert fax #,save draft and print using outlook contacts | 30 Apr 2007 20:38 GMT | 1 |
Where may I find a listing (also partial) or addin I may use to develop a template working as follows: The routine (exactly as outlook have foreseen for E-mails) is: - prepare a comunication for someone using MSWord (fax or letter);
|
| Can i use Outlook contacts in Word | 30 Apr 2007 20:20 GMT | 1 |
I use Outlook as my main database for contacts numbers ,address etc... Does anyone know how i can get a selected persons address from Outlook using a userform in Word, Or an easier alternitive? Thanks
|
| Extracting Custom Fields | 30 Apr 2007 19:55 GMT | 1 |
I need some help extracting custom fields from Outlook. I have a custom contact form with over 500 custom fields. If I loop through the .UserProperties collection, I get some, but not all of the values for those fields. The value tab of the properties for one of them shows ...
|
| What are the correct Dim statements to go with this Microsoft Sample Code? | 27 Apr 2007 20:08 GMT | 4 |
I am having some trouble getting the text value of the two text controls I have added to page 2 of an email for my customer's clients to us to place orders. The two text controls are named "ClientName" and "ClientContact". There will be many other controls/fields later
|
| HELP! Custom Form Events | 27 Apr 2007 15:18 GMT | 9 |
Below is code I have in a custom Outlook (2003) form but it doesn't fire when I change or click into the Subject field or any field. Does "Item" have to be defined or something? I followed the example in KB article 171246. The form is invoked from an .oft file. The code was ...
|
| folder.Items.count doesnt work with Outlook2003 | 27 Apr 2007 14:48 GMT | 3 |
I have some VBA code in Access that reads mails. It works in Outlook 2000 - but now with Outlook 2003 it doesn't any more. I loop through the contents of a mail folder based on the value "folder.Items.count" where "folder" is an Outlook.MAPIFolder - but now it
|
| Setting options in Outlook 2003 | 27 Apr 2007 01:13 GMT | 2 |
I have done a lot of VB programming for Access and Excel and this is my first exposure to Outlook 2003. What I want to do is to create a macro that will allow me to set a specific stationary file and signature file by clicking a toolbar
|
| GetItemFromID | 26 Apr 2007 23:49 GMT | 1 |
i locate the calender item with outlook.GetNamespace("MAPI").GetItemFromID("123") this works fine but how can i check
|
| GAL in combobox | 26 Apr 2007 21:11 GMT | 5 |
Is there any way to make a combobox and list the users from the Global address list? Using exchange 2003, outlook2003. Have searched a lot but come up empty. many thanks
|
| Configuring outlook for digital certiicates. | 26 Apr 2007 18:50 GMT | 1 |
Hi How do i programmatically configure outlook so that it uses a digital certificate for signature and encryption ? I have found a registry key (I dont kno i am on the right track or not.....):
|
| VBA novice.. | 26 Apr 2007 18:46 GMT | 1 |
I have outlook2003 installed on Terminal services.I want to lock down Tools-options....GP can block the whole options..thats very good...but but..The users will need to configure their signatures and delegate their boxes...and add mailboxes
|
| How to script the adding of additional mailboxes to the MAPI profi | 26 Apr 2007 18:08 GMT | 1 |
Is there a programmatical way (CDO/OUTLOOK Objects/other) to add a specific mailbox as additional mailbox to a user's MAPI profile? Thanks in front, Rv
|
| Using Restrict method to select emails | 26 Apr 2007 17:48 GMT | 16 |
I'm trying to use the .Restrict method to select emails within the Inbox: sSearch$ = "[From] = 'Jake Parlance'" Set fldFolder = CRM.O.AppNameSpace.GetDefaultFolder(olFolderInbox) Set objItemsCollection = fldFolder.Items.Restrict(sSearch$)
|
| Stopping email from being sent with blank subject | 26 Apr 2007 05:59 GMT | 4 |
I have this Code that does not seem to work in OL2003 when placeing in ThisOutlookSession Private Sub Application_ItemForgot(ByVal Item As Object, Cancel As Boolean) If Item.Subject = "" Then
|