| Thread | Last Post | Replies |
|
| VSTO | 20 Jul 2005 13:42 GMT | 1 |
I've been using some sample code from Ken Slovak's site (http://www.slovaktech.com/code_samples.htm#InspectorWrapper) to manage inspectors in my VBA module. I'm now converting that VBA code to work as a Com Addin using the VSTO Outlook AddIn and have run into a compile on such ...
|
| Finding Large Messages with Application.AdvancedSearch | 20 Jul 2005 06:57 GMT | 2 |
I am trying to write a search criteria for use with Application.AdvancedSearch that will search for messages of a at least a certain size. I want to mimic the Tools | Mailbox Cleanup
|
| Capture Outlook Items' events in VBA? | 19 Jul 2005 23:04 GMT | 13 |
I'm trying to replace the code behind my Outlook forms with VBA code, but am having trouble capturing the events. Here's what I've got so far: Public WithEvents VBAInspectors As Inspectors Public WithEvents VBAInspector As Inspector
|
| Outlook View Control | 19 Jul 2005 21:48 GMT | 1 |
I am using the OVC on an Access form and would like to use command buttons to change the view of the Calendar. i.e. Click the Month button and the OVC changes to the Calendar Month view etc. I can get it to view the Calendar but right now its just the last Calendar
|
| How to reset VBA after error? | 19 Jul 2005 21:47 GMT | 3 |
I have many thousands of lines of code in my VBA project for my users. Occassionally, errors occur that stop VBA from processing code. Closing Outlook and re-opening resets the project and everything works as expected again. Or, I can go into the VBA project for them and run the
|
| scan emails in the folder for certain phrase | 19 Jul 2005 21:27 GMT | 1 |
I hope I am not repeating the questions but I looked and could not find it. I don't know if this is possible but this is what I would like to do. I receive emails everyday stating if the report ran successfully. If ran successfully the email will simply say " successful", if not, ...
|
| How can I replace Outlook 2003 default Reminder form? | 19 Jul 2005 17:00 GMT | 6 |
I would like to replace the Outlook 2003 default Reminder form. I have always hated it's rather simplistic combo box approach with such limited choices of times that a reminder can be set to re-display. I want to replace Outlook's default Reminder form with a graphical interface
|
| Automating Reading Outlook email. | 19 Jul 2005 13:47 GMT | 1 |
Automating Reading Outlook email. I have a VB.Net program that reads an Outlook mailbox and parses thru emails. Everytime I execute it, I get a dialog box coming up in Outlook that says, "A program is trying to access email addresses you have stored in
|
| Sending a Right to Left email from Access | 19 Jul 2005 13:37 GMT | 7 |
I'm trying to send a Right to Left Email from access. I'm trying to find a way for the text to be aligned to the right and to be written from the Right to the Left. I'm not using the
|
| Getting ListBox values | 19 Jul 2005 12:57 GMT | 6 |
I have been playing around with a listbox which, for instance, has Pear, Apple, Peach, Melon as values... what I was looking for is a way to retrieve values that were selected (it's a multi-selection box). The online VBA reference suggests I do FOR NEXT loop based on ListCount ...
|
| Suppressing reminders on Outlook startup | 19 Jul 2005 08:38 GMT | 2 |
My application is written in C++ needs to access Outlook Address Book, without showing UI of Outlook. In order to do that the application creates the instance of Outlook and call its methods or properties. Everything is fine, but ... If there is some overdue task in the Tasks ...
|
| Macro to open a custom new message form | 19 Jul 2005 00:56 GMT | 3 |
I have a custom message form that has been published in the Inbox in Outlook 2003. I do not want to change the default new message form to my form; I just need a macro that will open my custom form. Being somewhat code-challenged I'm having a problem creating the macro. I would ...
|
| Unique identifier for Contacts in a MAPI folder? | 18 Jul 2005 22:12 GMT | 3 |
I am wondering if there is a unique identifier for contacts in a MAPI folder. I am using the function below to see if a Contact exists, however if there are 2 "Fred Smiths" and the first one checked doesn't have the correct Email1address, it won't check for existance of the ...
|
| Security | 18 Jul 2005 19:10 GMT | 2 |
I'm using Set mOLApp = CreateObject("Outlook.Application") Set mNameS = mOLApp.GetNamespace("MAPI") MsgBox "User: " & mNameS.CurrentUser.Name
|
| Linking to an MailItem | 18 Jul 2005 18:21 GMT | 5 |
Hello, I am trying to add into a body a hyperlink to another email message, but have so far been very unsuccessful. I've read that since Outlook 2000, only contacts can be linked to, but does anyone know of a way to get around this
|