ThreadLast AuthorMessages
read/total
Date
run macro when mail received
jason
3 / 3 09 Feb 2010
...
How do I copy a form to other machines
Sue Mosher [MVP]
2 / 2 09 Feb 2010
From the Forms Manager dialog, you can export the published custom form as an .fdm file and use that same file and dialog to import on other machines. See http://www.outlookcode.com/article.aspx?id=27 for other ideas. FYI, there is a newsgroup specifically for Outlook forms issues "down the hall" at http://www.microsoft.com/office/community/en-us/default.mspx?dg=microsoft.public....
Outlook VBA application_startup code not firing
JP
4 / 4 09 Feb 2010
...
Custom File As
JP
4 / 4 08 Feb 2010
...
I want to write to a text box on a modified form
Sue Mosher [MVP]
2 / 2 08 Feb 2010
See http://www.outlookcode.com/article.aspx?ID=38 -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Michelle" <mh_londonNOJUNK@hotmail.com> wrote in message news:DF25A087-0CE0-434F-90EA-C0DAB7337FD6@microsoft.com... > Hello, I have a macro that finds all...
Test message - plesae ignore
Michelle
1 / 1 08 Feb 2010
Please ignore this, just setting up...
Reminder for Task Item.
JP
5 / 5 08 Feb 2010
...
Invisible Item Properties on MailItems?
Dmitry Streblechenko
6 / 6 03 Feb 2010
If you are using Outlook 2007 or higher, you can use MailItem.PropertyAccessor to access any MAPI property. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Wolfixx" <wolfixx@gmx.at> wrote in message news:%23aHYSF5mKHA.4628@TK2MSFTNGP06.phx.gbl... > Thanks Sue > > I sorted it out. It seems that there are several custom...
Script to be scheduled as a batch job to send a message
M
3 / 3 01 Feb 2010
Hi Marius: This will get you on the right track and should meet all your requirements: 1.) Check out the sample script at http://gallery.technet.microsoft.com/ScriptCenter/en-us/9c466507-a57a-4bfc-bae2-289441804375. 2.) The script requires CDO (Collaboration Data Objects), which is not installed with Outlook 2007. You can download it from http://www.microsoft.com/downloads/details....
Class Factory Cannot Supply Requested Class
Doug Lowe
1 / 1 26 Jan 2010
Help! I'm getting this error whenever I run any macro. I'm using Office 2003 Small Business and have upgraded it with the latest updates. I have a few dozen macros in a VbaProject.OTM file, which I have deployed to about 50 users simply by copying the OTM file. It is failing only on one user, and it worked for him for about a year before it failed. I have tried re-copying the OTM file,...
imap move deleted email to TRASH in outlook
andre cloete
12 / 12 22 Jan 2010
i got this code http://www.telekawaru.com/outlookimap/ it looks for an event on delete and then move the deleted email to TRASH while the email is hidden in the folder it was deleted. purging happens later. when i compile it in outlook 2003 i get "user defined type not define". i can not figure out what is missing. think there is a reference missing, but do not know which one. i am not a...
AccessXP to Outlook2007 issue
bobh
1 / 1 21 Jan 2010
Hi, I'm hoping someone can help me understand what is going on with the following senario. I have posted this in the Access forum but have not recieved any replies so I thought I would try here. I have AccessXP with Outlook2007 and this vba code on a form in Access which sends an email, with Outlook 'closed' this code works as long as I attach a file. If I comment out the ....
outlook hide quoted text vba
JP
2 / 2 19 Jan 2010
...
37 Drivers Firmware para R4i, M3i Zero, Ezflash Vi
tesddalw
1 / 1 19 Jan 2010
Hola me he vuelto loca buscando los drivers para mi r4i y porfin navengado la he encontrado. Os dejo de donde he conseguido el firmware para mi r4i http://www.cartuchosdsi.es/wiki/descarga-drivers-firmwares-r4ir4-sdhcezflash-vi-m3i-zero.html Chao KjT(KMlo&)luqsKSrcxVuGh!b...
Look for patterns in Recipient Address
Sue Mosher [MVP]
3 / 4 18 Jan 2010
Use the Instr() function to search for substrings; look it up in Help. Or, learn how to use regular expressions to do pattern matching. See http://www.outlookcode.com/article.aspx?ID=41 for links to RexEx resources. And there's nothing weird about the recipient address. If you're in an Exchange organization, it's perfectly normal to have a long address in X.400 format. -- Sue...
Modifying value of To field on new mail
tyralia
1 / 4 14 Jan 2010
Ok nevermind, it seems it was just because I was using 'Set' in the line "Set myCount = 1", took that out and now it works. Thanks for your help....
Drag&Drop mail items to other applications...
Dmitry Streblechenko
2 / 5 11 Jan 2010
No, this has nothing to do with MAPI, Redemption, or even Outlook. The window that accepts the drop event needs to handle these formats, there is no way aorund that. The only workaround is to assume that since you are getting a drop even from Outlook, the messages need to be selected first, hence you can use the Application.ActiveExplorer.Selection collection. -- Dmitry...
Set time for calendar start/end times via VBA
Sue Mosher [MVP]
1 / 13 07 Jan 2010
As I said, it goes after any code that uses the item you want to close. It would be helpful if you quoted enough of the previous discussion so those of us using offline newsreaders can follow it. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54...
Outlook Macro VBA
Sue Mosher [MVP]
2 / 2 05 Jan 2010
Outlook version? FYI, objSel is a Selection object, not a string, so it would be better to write: objIEApp.Navigate "http://support.ticket.com?ticid=" & objSel.Text -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 <Onno de Vries> wrote in...
Archive Mail Item directly after clicking the "Send" button
Dmitry Streblechenko
2 / 2 31 Dec 2009
Instead of explicitly moving the message, set the SaveSentMessageFolder property before sending the message: MyMail.SaveSentMessageFolder = mySentDel MyMail.Send -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - <Axel Gehrke> wrote in message news:2009123018843axel.gehrke@bshg.com... > My "Sent...
Save Outlook Message (Email) to MSG Compound File in Outlook 2010
Dmitry Streblechenko
1 / 4 26 Dec 2009
What are the relevant snippets of your code? Can you open the MSG file in OutlookSpy (click Misc | OpenIMsgOnIStg)? -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Stuart Bray" <stu.bray@gmail.com> wrote in message news:db56a01e-cbbe-436f-96c5-e85c8dd94650@b36g2000prf.googlegroups.com... > Hi All, > > I've got code that...
Send Email using SendObject fails when sending more than one time.
Ken Slovak - [MVP - O...
1 / 2 22 Dec 2009
DoCmd uses Simple MAPI, which can be problematic at times with Outlook. Do you get an Outlook window with the DoCmd call? Usually you get a modal mail window that when sent will allow the Outlook session in the background to close. In general you are always better off using the Outlook object model and Outlook automation, rather than using Simple MAPI commands. -- Ken Slovak...
Outlook Fails to send when not visible
Ken Slovak - [MVP - O...
1 / 5 17 Dec 2009
To get an Explorer object you can use MAPIFolder.GetExplorer(). To show the Explorer you use the Explorer.Display() method. -- 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 "McKilty" <bluesbrthr@gmail.com> wrote in message...
Can a macro work just inside Outlook ?
Roger
2 / 2 04 Dec 2009
I have reposted this to outlook.programme_vba as I think this is the wrong group ! Roger "Roger" <help-me@skynet.be> wrote in message news:O3tKrcLdKHA.2184@TK2MSFTNGP04.phx.gbl... >I am using Outlook 2003. I have written vba for macros in other office apps >but not Outlook. We get a lot of emails with sales details. Many are >forwarded to another email address outside the company...
56
tesddalw
1 / 1 02 Dec 2009
Visitanos en www.Dsiconsolas.com COMPRAR R4I Dsi en www.Dsiconsolas.com COMPRAR R4I-SDHC.COM en www.Dsiconsolas.com COMPRAR M3i Zero en www.Dsiconsolas.com COMPRAR EZFLASH VI www.Dsiconsolas.com TbVS>.,#jgX.JeH#fes>#!D(,...
Create temp Profile in code? Outlook 2007
Ken Slovak - [MVP - O...
1 / 10 29 Nov 2009
There's also microsoft.public.win32.programmer.messaging for MAPI. Dmitry hangs out there and Stephen Griffin also answers there sometimes. There's no difference in Outlook not being recommended for running in a service or unattended in 2007 or 2010, you just don't do it. I have used the server side MAPI download (32 bit) with Redemption to handle dynamic logons scanning mailboxes,...
E-mail Conversation Tracking
Dmitry Streblechenko
3 / 4 29 Nov 2009
Yes, PR_CONVERSATION_INDEX is lost on external e-mails. You coudl in theory extract In-Reply-To headers from the extrenal messages, but that does not work too well... -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "McKilty" <bluesbrthr@gmail.com> wrote in message news:d523bb8b-a693-4486-a080-a83287c6cc8c@f10g2000vbl....
Adding a value to custom fields
brightenmyoutlook
2 / 5 25 Nov 2009
...
Printing of Bcc
Michael Bauer [MVP - ...
1 / 6 25 Nov 2009
Hi Kerstin, no, the error only occurs if the object *before* the dot is nothing because you never can call a method of Nothing. In this case that means obj is Nothing, thus you can't call its Controls property. (If Controls itself were Nothing that would be ok because it's ok to set an object variable = Nothing.) So, you need to figure out how the page you're looking for is...
Outlook calendar
Sue Mosher [MVP]
2 / 2 24 Nov 2009
To get a non-default folder, you need to walk the folder hierarchy using the Folders collections or use a function that does that for you. For examples, see: http://www.outlookcode.com/codedetail.aspx?id=628 - uses a folder path string http://www.outlookcode.com/codedetail.aspx?id=492 - searches for a folder by name http://www.outlookcode.com/codedetail.aspx?id=1164 - uses a folder...
Get image content ID from MAPI mail
Michael Bauer [MVP - ...
1 / 6 24 Nov 2009
Please read the suggested example on www.dimastr.com This example uses the Redemption as well: http://www.vboffice.net/sample.html?mnu=2&lang=de&smp=29&cmd=showitem It's more complex than you need it, but you might learn a bit. -- Best regards Michael Bauer - MVP Outlook : Outlook Categories? Category Manager Is Your Tool : VBOffice Reporter for Data Analysis &...
Get unique ID from saved MSG file
Dmitry Streblechenko
2 / 4 13 Nov 2009
Try to strip out spaces and punctuation from, say, Subject, Body, addresses of all recipients, sender address, etc, then concatenate these properties and calculate a hash. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "mac" <mac32bit@hotmail.com> wrote in message news:fdb2e4ab-f22b-488c-8517-f97e885a1ab1@m16g2000yqc....
Deleting a draft of an email
kevotheclone
0 / 3 13 Nov 2009
Thanks Ken. Yes thinking about it more I realize that I can't delete a MailItem from within either the MailItem.Close event or the Inspector.Close event as both Close events are really BeforeClose events. It would be nice if the Inspectors collection had a CloseInspector event to balance out the NewInspector event and if there was a way to capture the user's response to the "Do...
email goes to outbox
Michael Bauer [MVP - ...
2 / 4 13 Nov 2009
> So, the only way Outlook can send a message is to put it in it's > 'outbox' first??? No. Outlook just shows the message there as long as it isn't sent. If you want to send a message by code, it might take up to about one minute. That means, if you had started the application, and terminate it too early, the message won't get sent but stays in the outbox. > and I don't have a clue...
Get image content ID from MAPI eMail
Sue Mosher [MVP]
5 / 5 05 Nov 2009
What specifically doesn't work? Show your code. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Tora" <alpha74@gmx.de> wrote in message news:%23axb0LjXKHA.4688@TK2MSFTNGP06.phx.gbl... > Sue Mosher [MVP] schrieb: >> Use CDO to access the attachment's...
05 Hosting Web www.ivys.es
tesddalw
1 / 1 04 Nov 2009
Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Web www.Ivys.es Hosting Linux Web www.ivys.es Hosting Linux Web www.ivys.es Hosting Linux Web www.ivys.es Hosting Linux Web www.ivys.es Hosting Linux Web www.ivys.es Hosting Linux Web www.ivys.es Hosting Linux Web www....
Emptying items from a Shared mailbox's Inbox and any subfolders in it ..
Sue Mosher [MVP]
2 / 2 03 Nov 2009
If you use GetSharedDefaultFolder() to return the Inbox, you won't get access to the subfolders. Instead, you can add the mailbox to your Outlook profile (manually) and then walk the folder hierarchy, just as you would to reach a folder in a .pst file that you might have added. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users...
Customize toolbar buttoms
HenrikH
0 / 22 29 Oct 2009
Thanks Ken The part I was missing was the "Application." before Application_Startup Will give it a go and see if it solves the problem. HenrikH...
Vintage Belleek Patterns: Video Black Sexe
gal Mcguire
1 / 1 28 Oct 2009
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOO Videos de sexe: PORNO AMATEUR OOOOOOOOO VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV OOOOOOOOO ENTER HERE: OOOOOOOOO OOOOOOOOO http://video48.net/video/59vc OOOOOOOOO OOOOOOOOO OOOOOOOOO...
36 KewaSa.com DDL Torrents
tesalw
1 / 1 23 Oct 2009
www.KeWaSa.com DDL , GAMES, MUSIC, MOVIES,SOFTWARE www.KeWaSa.com Descargas Directa, Juegos Musica, Peliculas, Programas , Software ekO@=>WESTuv&wb_Rofz.Fn%!...
97 Opinion Dsiconsolas.com
amel
1 / 1 16 Oct 2009
...
Word as E-mail Editor issues
Ken Slovak - [MVP - O...
0 / 5 12 Oct 2009
On Error Resume Next blnWeCreated = False Set myWord = GetObject(, "Word.Application") If myWord Is Nothing Then blnWeCreated = True Set myWord = New Word.Application End If That way you know if you want to shut it down when finished. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended...
Outlook closes before Sending
Ken Slovak - [MVP - O...
1 / 2 09 Oct 2009
That's normal and the items won't be sent until Outlook is opened again. The only exception would be to do a Send/Receive or be connected to an Exchange mailbox. -- 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 "Matthew Nicoll"...
Font question for Outlook 2003, 2007 and 2010 addin
Mike
1 / 1 08 Oct 2009
I would like my add-in to look more like the version of Outlook that is hosting it. Does anyone know the font family that is default to Outlook versions 2003 thru 2010? Thanks -mike...
titanium ecm2001 crack torrent rapidshare download free ?@/bsKIGM^
ecm2001 winols cpwin ...
1 / 1 08 Oct 2009
We can crack or emulate any protection type: Dongle, Hardlock, Hasp, Serial, Password, Hasp4, Flexlm, Sentinel, Wibu, Eutron Smartkey, Hasphl, Proteq, All the Protections!! email = yshowsoft@??? email = yshowsoft at gmail.com ecm2001 titanium download ecm2001 titanium rapidshare titanium ecm2001 torrent ecm2001 titanium crack ecm2001 titanium v 5.3 titanium ecm2001 v 5.4...
Handling Message Classes
McKilty
0 / 4 07 Oct 2009
Thanks, that worked for me....
Copy from Search Folders to New Folder
McKilty
0 / 7 06 Oct 2009
...
Font question for Outlook 2003, 2007 and 2010 addin
Mike
0 / 1 03 Oct 2009
I would like my add-in to look more like the version of Outlook that is hosting it. Does anyone know the font family and size that is default to Outlook versions 2003 thru 2010? Thanks -mike...
Hyperlink to an E-Mail
McKilty
3 / 4 02 Oct 2009
Thanks Sue....
Accessing Outlook "Search Folders"
McKilty
0 / 17 30 Sep 2009
It's all working. I don't even know what changed. Either magic is involved, code fairies, or I've been at this too long that I became cross-eyed and can't read my own code anymore. Thanks for all your help Ken, Dmitry, and Sue (from another thread.)...
Contact Us
All times are in (US) Eastern Daylight Time (GMT -4:00)