ThreadLast AuthorMessages
read/total
Date
bing map
cinnamngrl
0 / 2 19 May 2010
...
bing map
Slipstick
0 / 1 19 May 2010
cinnamngrl wrote: > So my 2003 has a button on each contact that will open a web page of a > bing map of this address. would it be possible to see all my contacts > on one map? obviously yes but could I write a macro of this? > > or has anyone already done so? You'll need to write code to do it (or enter the addresses online) - its not something outlook can do on its own. 'Outlook &...
Creating a new TASK using VFP9.0
bbettsack
0 / 3 19 May 2010
I figured out the code and am posting it here in case anyone else needs it. * This program will create a TASK in Outlook (Office 2007) oOutlook = CreateObject('Outlook.Application') oNameSpace = oOutlook.GetNameSpace('MAPI') oNameSpace.Logon() loItem = oOutlook.CreateItem(3) #DEFINE CR CHR(13) WITH loItem .Subject = 'New Task - test' .Body =...
Reminder - Microsoft Responds to the Evolution of Community
nntp@microsoft.com
0 / 1 19 May 2010
What is Happening? This message is to inform you that Microsoft will soon begin discontinuing newsgroups and transitioning users to Microsoft forums. Why? As you may know, newsgroups have existed for many years now; however, the traffic in the Microsoft newsgroups has been steadily decreasing for the past several years while customers and participants are increasingly finding...
Mark copy of sent email as read - VBA?
Michael Bauer [MVP - ...
0 / 4 19 May 2010
Put the code into the module ThisOutlookSession, and add this: Private Sub Application_Startup() Initialize_handler end Sub Application_Startup is the procedure called by Outlook at startup, and that one's found only in ThisOutlookSession. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager:...
ItemAdd event not functioning - not triggering.
Diplodok
0 / 3 19 May 2010
Hi! I can not understand, why you want to Mark Item as READ if it is already marked as READ by default after you sent it? You can use intrinsic routine ItemSend in class ThisOutlookSession for catch sent items "on-fly" and set Item.SaveSentMessageFolder to folder you needed. However, if You definitely want to set Item.Unread Property to false, you have to use ItemAdd event for that....
Automatically save attatchment with a different extension
Ken Slovak - [MVP - O...
0 / 2 18 May 2010
Sure, you can do that. Look at www.outlookcode.com for examples in handlers for ItemAdd() for the Inbox or NewMailEx(). You can add your code to save the attachments in one of those event handlers. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech....
Creating Tasks in Outlook 2007 with VBA
Ken Slovak - [MVP - O...
0 / 2 18 May 2010
Outlook internally stores everything in UTC time and converts to local time based on a) your Windows time zone settings in the Control Panel and b) any Outlook time zones set in Tools, Options, Calendar Options. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www....
send mail every days
Diplodok
0 / 8 18 May 2010
Forgot! It tested on Outlook 2003, not 2007 But it used not specific VB model, I hope Andrey...
Macro to speed email creation
steve sharpe
0 / 5 18 May 2010
Hi Michael Thanks very much, You solved my problem. Best regards Steve 'Michael Bauer [MVP - Outlook Wrote: > ;349056']For instance, for OL07 right click the toolbar of the email > window, then > Edit Quick Access Toolbar (or similar). Select macros, then drag the > macro's > name to the pane right hand. > > -- > Best regards > Michael Bauer - MVP Outlook > Category...
Voting buttons not showing
Sue Mosher [MVP]
0 / 2 18 May 2010
That's normal and by design. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "PPL" wrote: > I'm sorry for the cross-posting: > > Using Outlook 2003, I've created and published a customer satisfaction form > with voting buttons to the...
Outlook rule check for messages not received
pip
0 / 4 18 May 2010
escamoteur wrote on 05/04/2010 06:05 ET : > Otherwise you would need an Outlook Add-In that checks your inbox from time to > time. > Tom > > "Michael Bauer [MVP - Outlook]" schrieb im > Newsbeitrag news:5ve1s3jbu7ew$.ahyd3yo4ttpt$ >> >> >> See the Items.Restriction function. You can restrict the Items collection of >> a certain folder for instance by the Subject and ReceivedDate....
Preview Pane freezes while application runs
GP
0 / 1 17 May 2010
I have written a VBA application that takes about 20-30 minutes to iterate through a series in nested for..next loops. In order to allow me to use Outlook while the app is running I have inserted a pause/doevents loop inside the innermost for..next loop as follows: AppNow = Timer Do While Timer < AppNow + 1 DoEvents Loop This yields to other events for one second, and does allow...
Creating and sanding tasks from Access VBA
ACCESS 2003
0 / 3 17 May 2010
Hi, This is code to sand from my account,but I would like some code to sand from account of manager (his tasks) to any another account. Sub AssignTask() Dim myOlApp As New Outlook.Application Dim myItem As Outlook.TaskItem Dim myDelegate As Outlook.Recipient Set myItem = myOlApp.CreateItem(olTaskItem) myItem.Assign Set myDelegate = myItem.Recipients.Add("Gon...
How do i add the date to subject header of incoming mail?
Michael Bauer [MVP - ...
0 / 13 16 May 2010
So the code execution doesn't stop there? Then check Tools/Macros/Security, whether VBA is executed at all. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am Fri, 14 May 2010 16:42:29 +0100 schrieb DarrenD: > I have copied it to the...
compile error on previously functioning code outlook 2003 windows
Michael Bauer [MVP - ...
0 / 2 16 May 2010
Check Tools/References. Visual Basic For Applications, and OLE Automation must be checked. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am Fri, 14 May 2010 10:40:01 -0700 schrieb Celeste: > Hello everyone, > > I have some Outlook...
Missing attachment warning
Sue Mosher [MVP]
0 / 2 14 May 2010
Add another If ... End If block to check the value of Item.Recipients.Count. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Thomy" wrote: > > Hello. > > I am trying to personalize my Outlook to avoid sending useless e-mails. > For instance,...
Transmitting Outlook data to a web server
Polaris431
0 / 3 14 May 2010
Hi Ken, I can program in VBA or C#. I prefer C# though. The latest version of Outlook would be used. I could develop an Add-in as I've done that before. No Exchange server. The server is irrelevant. Communications will be done over the Internet via typical protocols such as HTTP. Thanks Johann...
Encodings and the OMS Web Service API
mhandel
0 / 1 13 May 2010
Toby wrote on 11/19/2006 06:13 ET : > I'm in the midst of implementing a Office Outlook 2007 Mobile Service (OMS) > backend to allow Office to connect to our two-way SMS gateway using the > guidelines published here: > http://www.microsoft.com/downloads/details.aspx?familyidP5c17a6-5598-4fd8-a448-820d8bae5f07&displaylang=en > > You'll notice from the WSDL in that document that Outlook...
Insert Text and Send
Michael Bauer [MVP - ...
0 / 2 13 May 2010
This example demonstrates how to change the Subject of a reply: http://www.vboffice.net/sample.html?mnu=2&smp=9&cmd=showitem&lang=en you can write your text into the Body or HTMLBody property. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en>...
VBA: how to set a category to all mail in a folder ?
Michael Bauer [MVP - ...
0 / 2 13 May 2010
See the ItemAdd event. An example is available in the VBA help file. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am Thu, 13 May 2010 10:26:32 +0200 schrieb notme: > Hi everyone, > I need to set automatically a category to alll email...
Outlook - отправка и получение почты не работает.
Василий
0 / 1 13 May 2010
У меня версия Windows Vista Starter, SP2. Установлен Офис 2007. Не работает отправка и получение почты. Пишет - ошибка, не хватает памяти или системных ресурсов. Проcит закрыть все приложения, хотя у меня открыт только Outlook....
Warning message
Michael Bauer [MVP - ...
0 / 4 12 May 2010
You might also look on www.slipstick.com. There're are ready-to-use Addins for that available. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am Tue, 11 May 2010 10:26:59 +0100 schrieb Thomy: > Thank you Michael. > I can guess that the...
Copying multiple folders to PST
eckert1961
0 / 3 11 May 2010
Thanks for your reply Ken. I did find an alternative solution on the following link that worked quite well. http://spike.wharton.upenn.edu/support/email/personal_folders.cfm This allowed me to bypass the tedius step of copying 1 folder at a time. -- Regards, Chris "Ken Slovak - [MVP - Outlook]" wrote: > It would have to be done one at a time. > > -- > Ken Slovak > [MVP...
Outlook 2007 Macro for replying to an e-mail.
Michael Bauer [MVP - ...
0 / 2 11 May 2010
The current message is Application.ActiveInspector.CurrentItem. For an email it returns a MailItem object. See MailItem in the object browser (f2), which tells you what properties and functions are available. For instance, there's a Reply function that returns a new MailItem object. It supoprts Subject, BodyFormat etc. -- Best regards Michael Bauer - MVP Outlook Category...
Create appointment to custom (shared) outlook calendar
khu
0 / 4 10 May 2010
Would you please post the solution, how did you solved the problem. -Thanks...
Code to read emails
Mark Andrews
0 / 7 10 May 2010
Thanks Ken that makes sense! Now I just need to decide what I should do. Mark "Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message news:uC1LlOH8KHA.420@TK2MSFTNGP02.phx.gbl... > NameSpace.Folders has all the folders and stores. Each mailbox is a store, > as is a PST file (Personal Folders). If 3 stores are loaded (not counting > any public folders) NameSpace....
Proof Of Looping Bug in Reading Outlook Inbox From Access?
Rich Locus
0 / 3 10 May 2010
Karl: Your solution was EXCELLENT!! I have included your suggestions in my code, and for the benefit of others, posted the final working code. This code handles the following requirements: 1) Read through the Outlook Inbox from another program such as Microsoft Access 2) Process each email and MOVE it to another folder (essentially deleting it from the Inbox) If you start...
VSTO 2008 how to bind Form Region controls to Item data fields
Casper
0 / 4 10 May 2010
Hi Tom, I believe you can't use the VS designer to get Outlook specific controls. If you want those you still need to design the form in Outlook and import it via the New Form Region command. Regards, Casper "escamoteur" wrote: > Hi, > > nobody there who can help me? > Tom > > "escamoteur" <mail@burkharts.net> schrieb im Newsbeitrag...
ce forum va etre ferm en juin
eddymaue
0 / 1 08 May 2010
...
Quick Parts - many blding blocks
jack
0 / 1 08 May 2010
Using Outlook 2007 & Windows XP Please excuse the cross posting. I posted the following in microsoft.public.outlook.general a couple days ago and I'm now wondering if it might be possible to do something in VBA to accomplish the following. The signature files are available in their rtf format. Also, I now understand that the signature files are a quantity of 200+ instead of previously...
BUY SOUTH AFRICAN FAKE PASSPORT/UNITED KINGDOM FALSE PASSPORTS/FAKE ITALIEN(I...
Jack Dawson
0 / 1 08 May 2010
Our team is a unique producer of quality fake documents. We offer only original high-quality fake passports, driver's licenses, ID cards, stamps and other products for a number of countries like: USA, Australia, Belgium, Brazil, Canada, Italia, Finland, France, Germany, Israel, Mexico, Netherlands, South Africa, Spain, United Kingdom. This list is not full. To get the additional...
How To Refer To Custom Folder in VBA
Rich Locus
0 / 2 08 May 2010
I finally came up with the code to do this... I had to refer to the Parent directory of the Inbox: Set MyEmailFolder = OlApp.GetNamespace("Mapi").GetDefaultFolder(olFolderInbox).Parent.Folders("MyEmail") -- Rich Locus Logicwurks, LLC "Rich Locus" wrote: > Hello Outlook Group: > > I am trying to reference a CUSTOM user folder at the same level as all the > other folders:...
Access Program Only Looping Part Way Through Outlook Inbox
Rich Locus
0 / 3 08 May 2010
Moderator: Could you please delete this post? I'm going to put in a simpler example. -- Rich Locus Logicwurks, LLC "Rich Locus" wrote: > Hello Outlook Group: > > I am developing an Access application that reads through the Inbox (both > read and unread mail), and under certain conditions, adds the mail > information to an Access database. When I am done looking at the mail...
Update - Microsoft Responds to the Evolution of Community
0 / 1 08 May 2010
What is Happening? This message is to inform you that Microsoft will soon begin discontinuing newsgroups and transitioning users to Microsoft forums. Why? As you may know, newsgroups have existed for many years now; however, the traffic in the Microsoft newsgroups has been steadily decreasing for the past several years while customers and participants are increasingly finding...
Want to add code to ThisOutlookSession, but other code already exists
Ken Slovak - [MVP - O...
0 / 2 07 May 2010
There's no reason at all why if you used method 1 at your link that it would interfere with your running that macro to re-order your contact filing. Both pieces of code can co-exist. -- 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...
Saving Outlook Email As Text File Extract
Rich Locus
0 / 3 06 May 2010
Excellent Solution!!! Thanks very much for taking the time. -- Rich Locus Logicwurks, LLC "Michael Bauer [MVP - Outlook]" wrote: > > > Here's an example: > http://www.vboffice.net/sample.html?lang=en&mnu=2&smp=7&cmd=showitem > > -- > Best regards > Michael Bauer - MVP Outlook > Category Manager - Manage and share your categories: > SAM - The Sending Account...
running code after the new inspector is visible
Ken Slovak - [MVP - O...
0 / 2 06 May 2010
Use the first Inspector.Activate() event to do what you want. -- 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 "Alberto" <Alberto@discussions.microsoft.com> wrote in message news:59C0BF38-B786-4C8D-B4C3-74A3A7F1211B@microsoft.com....
Accessing folder 'Other Contacts'
Dmitry Streblechenko
0 / 2 06 May 2010
Look at the Namespace.GetSharedDefaultFolder method. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Rudy" <Rudy@discussions.microsoft.com> wrote in message news:8AED479E-22F6-44A3-A695-77107E1DA0CC@microsoft.com... >I am programming in VBA > > Several users are using Outlook in a network environment. Each of them hat >...
32-bit app using 64-bit Outlook COM objects?
Ken Slovak - [MVP - O...
0 / 4 06 May 2010
Thanks for testing that out and thanks for posting your results. -- 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 "Jeff" <budajeff@gmail.com> wrote in message news:22c352ea-834d-4e62-826c-37e429d5898b@h9g2000yqm.googlegroups.com.....
Outlook Macro to get Exchange Info from Mail
Ken Slovak - [MVP - O...
0 / 26 06 May 2010
For 1 you'd add an On Error Resume Next statement and check for IsEmpty() on the property and check for an error. If you have either you can clear the error and just move on. For 2 that's the reason most of stopped using CDO many years ago, the security. Client side CDO actually has tighter security than the Outlook object model (server side CDO has none of the security but should...
Code that Runs nightly to export folder into a csv
Michael Bauer [MVP - ...
0 / 2 06 May 2010
See ms.public.office.developer.outlook.vba? You've got replies. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am Tue, 4 May 2010 17:29:26 +0100 schrieb gn_pp: > I had posted on other forums but I haven't gotten a reply and really >...
Microsoft Responds to the Evolution of Online Communities
nntp@microsoft.com
0 / 1 05 May 2010
Date 5/4/2010 Starting in early summer 2010, Microsoft will begin progressively closing down the Microsoft public newsgroups to enrich conversations in the rapidly-growing forum platform. This decision is in response to worldwide market trends and evolving customer needs. Microsoft continues to invest in forums to reduce customer effort, consolidate community venues and make it easier for...
Send mail when new mail received
pritchj
0 / 1 04 May 2010
I need a script that sends an email to a specific address every time a certain account receives email. Right now I have a rule set up that auto-replies to the sender and BCC's the people that need to be notified whenever a message is received. But the problem with the rule is that it only auto-replies for each unique sender per session. I need an email notification for every single...
Catch events from pre-existing buttons in Outlook 2007
Ken Slovak - [MVP - O...
0 / 7 04 May 2010
The schema you want for contacts is "OutlookAddressItemRibbonControls.xls". There's also a trick that can be used in most cases. Right-click on the ribbon on the line where the tab names are in an open item and select Customize Quick Access Toolbar. In the customize dialog select All Commands in the Choose drop-down. When you hover over a command the schema name will show up as a tip....
Send appointments data to a Form programmatically
RogerC
0 / 3 04 May 2010
Thanks escamoteur! I was hoping for a solution entirely within Outlook, but I'll look into the Excel macro possibility. I'm not a VBA programmer by any means, but I have pieced together macros in Excel in the past. I'll give it a try. "escamoteur" wrote: > Sure, this is possible. One of the easiest solutions would be to Excel and retrieve the Outlook Calendar Data with an VBA...
Anyone tried Security Manager 2010 for Microsoft Outlook?
Jeff
0 / 1 03 May 2010
http://www.add-in-express.com/outlook-security/index.php "Need to disable Outlook security and remove such alerts? With Outlook Security Manager you can easily bypass security settings in MS Outlook and turn off an alert, or a pop-up message with just one line of code! Unlike similar tools, Outlook Security Manager doesn't transform OOM (Outlook Object Model) and CDO (Collaboration Data...
How to AutoSave Attachments that meet a criteria to a folder on a local drive
Michael Bauer [MVP - ...
0 / 4 03 May 2010
See the object browser (f2), and switch from <All Libraries> to Outlook. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am Mon, 3 May 2010 02:58:36 +0100 schrieb Mr. Walnuts: > Outstanding... Thank you. > > Thats exactly what I needed....
report of Available hours for a team of staff from OUtlook Calenda
Michael Bauer [MVP - ...
0 / 3 03 May 2010
Kostas, see if VBOffice Reporter meets your needs. With it you can group by the BusyStatus (free, tentative, etc.) and calculate the hours. For more details see the link in my signature. -- Best regards Michael Bauer - MVP Outlook Category Manager - Manage and share your categories: SAM - The Sending Account Manager: <http://www.vboffice.net/product.html?lang=en> Am...
olNavigation Folder
Ken Slovak - [MVP - O...
0 / 2 01 May 2010
Those are enumeration members and have nothing to do with file dialogs. VBA code doesn't really have anything for file dialogs, usually if that was needed people would make Win32 API calls to work with the common dialog functions. For only file accesses people use Windows scripting to do saves/loads/etc. Outlook VBA is intended for personal macros and prototyping, not deployment....
Contact Us
All times are in (US) Eastern Daylight Time (GMT -4:00)