| Thread | Last Author | Messages read/total | Date |
|---|
| How do i receive text and pictures from someone using a mac comp. |
Ken Slovak - [MVP - O... |
0 / 2 |
14 Jan 2009 |
| Not a programming question. Please post your question in a general Outlook
group.
--
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
"trucker2" <trucker2@discussions.microsoft.com> wrote in message... |
| Transfer school schedule to Outlook |
JP |
0 / 2 |
13 Jan 2009 |
| I have some code here that might help you. This macro can set up Tasks
one at a time:
http://www.codeforexcelandoutlook.com/blog/2008/11/using-excel-vba-to-set-up-task-reminders-in-outlook/
And if you need to do it in bulk, you could adapt this code to work
with Tasks instead of Contacts:
http://www.codeforexcelandoutlook.... |
| creating an email with an html file through Access |
Ken Slovak - [MVP - O... |
0 / 2 |
13 Jan 2009 |
| You would have to add the file as an attachment, visible or not, and in the
HTML you would have to correctly reference that attachment using a "cid"
type reference. Examine the HTML for any emails you've received that have
that sort of attachment to see how the HTML would have to appear.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming... |
| Data types of OL contacts |
Ken Slovak - [MVP - O... |
0 / 2 |
13 Jan 2009 |
| They are constants in various Outlook type enumerations. They can be equated
to 32-bit Longs, although depending on your language and platform you may
not be able to cast enumeration members as integer types.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.... |
| Synchronization with custom application |
Dmitry Streblechenko |
0 / 4 |
12 Jan 2009 |
| But it is your code that creates a duplicate appointment, is it not?
Why do you create a new appointment instead of modifying an existing one?
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Kabs" <Kabs@discussions.microsoft.com> wrote in message
news:D4799E52-1E4D-4340-8583-A89FD11A0C17@microsoft.com...
>I can export the... |
| How to |
PJFry |
0 / 3 |
12 Jan 2009 |
| Michael,
That did the trick.
Thanks!
PJ
"Michael Bauer [MVP - Outlook]" wrote:
>
>
> You can create a rule for incoming messages, which calls the SaveAtt method.
> The rule passes the incoming message to the MyMail variable, so probably
> that's the object you want to work with. But right now you perfom the
> actions on every selected e-mail by iterating through the... |
| Links Collection |
Michele |
0 / 3 |
12 Jan 2009 |
| Hi Ken, thanks a lot for reading me.
I need to correct you. The Subject field of a contact is used to fill the
"Name" property of a link. Try on your own my example and you will see that i
am right, at least in my case it's so. FullName has also the Title inside it,
Subject doesn't have the Title and the name of the Links are exactly the same
as the Subject that is without the Title of... |
| Saving an email I juste sent |
Ken Slovak - [MVP - O... |
0 / 2 |
12 Jan 2009 |
| Something isn't right if you call Send on the item and it isn't actually
sent out. It might be because the send/receive process isn't set to work as
soon as you need it to work, or it could be something else.
If you are using Outlook 2002 or later try adding code after you call send
to start up a SyncObject. That should start the send/receive process. See if
that helps.
For items... |
| Outllook Connector for OL2007 |
Diane Poremsky [MVP] |
0 / 2 |
10 Jan 2009 |
| Microsoft is not planning on releasing a connector for notes. AFAIK, Domino
hasn't either.
--
Diane Poremsky [MVP - Outlook]
Outlook Tips: http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Outlook Tips by email:
dailytips-subscribe-request@lists.outlooktips.net
EMO - a weekly newsletter about Outlook and Exchange:... |
| Formatting Body of Meeting Request |
Steve |
0 / 3 |
10 Jan 2009 |
| That worked. I have vbCR & vbCrLf, but I changed them both to vbCrLf and it
came through on the meeting body as I wanted. Just seems odd that the msgbox
in Access showed the carriage return just fine with vbCr & vbCrLf but it
didn't work in the meeting request. But it's all good now. Thanks.
"Michael Bauer [MVP - Outlook]" wrote:
>
>
> The body format of the AppontmentItem is... |
| specify other users folder as source of email mail merge? |
Ken Slovak - [MVP - O... |
0 / 2 |
10 Jan 2009 |
| You can only send using accounts in your Outlook profile in Outlook 2007 by
setting the sending account. For earlier versions you can't do that.
If you are logged in as another user then you can send as them.
Otherwise the best you can do is use the SentOnBehalfOfName property, and
only if you have permissions to send on their behalf.
--
Ken Slovak
[MVP - Outlook]
http://www.... |
| registry location for OL2003 rule |
Michael Bauer [MVP - ... |
0 / 2 |
10 Jan 2009 |
| There's no access to the rules in OL03 by code. That feature was added with
OL07.
--
Best regards
Michael Bauer - MVP Outlook
: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>
Am Sat, 10 Jan 2009 18:05:12 +0200 schrieb pia:
> are the rules for OL2003 stored in... |
| My New Blog ! |
MaNi |
0 / 1 |
10 Jan 2009 |
| Hi friends!
check my new blog!
Here you will find more informative and interesting posts!
http://mani-pedia.blogspot.com
send me your comments..
thank you!... |
| reading calendar and exclude birthday, error in V2007 french? |
Alain Bourgeois |
0 / 5 |
09 Jan 2009 |
| Thanks, but I found a better solution: as Restrict(sStr) doesn't work for
some appointments, I made an easy workaround:
if not app.alldayevent and app.Start>=DStart then
... processings
'else skip
"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message
news:%23Nq$8xpcJHA.2112@TK2MSFTNGP02.phx.gbl...
> Other than looking for the text for Birthday and having to change... |
| Outlook 2000 Macro: Please Help |
bluedolphin |
0 / 3 |
09 Jan 2009 |
| I appreciate it , but it only gives a sample code which only "inserts the
"subject" line. I am trying to find a way to have a macros Insertss some
text in the "BODY" of the message.. Please can you help me to find a sample
macro "code" that will insert somce sentences in the "Body" of the message.
I do not know how. thankyou
"Tausif" wrote:
> Hi,
>
> Try this link... |
| shortcut for compressing outlook.pst ? |
Dmitry Streblechenko |
0 / 1 |
09 Jan 2009 |
| No.
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Wilfried" <invalid@invalid.invalid> wrote in message
news:2ooem41qj29fc6arqbos6s8b0kadh6ccrv@4ax.com...
> Hello all,
> compressing outlook.pst needs 5 clicks to start and 2 clicks to close
> the windows (Outlook 2003).
> Is there a VBA call for compressing outlook.pst,... |
| Strange issue with application.itemsend |
Armin Simon |
0 / 5 |
09 Jan 2009 |
| "Michael Bauer [MVP - Outlook]" <mb@mvps.org> wrote in
news:vf2rt8auif81.5e8z14fdfp4u$.dlg@40tude.net:
> See Tools/Trust Center whether security is set not to execute VBA at all.
Woahh,
Thanks a lot!
Sometimes easy switches do the trick ;-)
Cheers
/AS... |
| Identify unreplied emails in inbox |
Tausif |
0 / 3 |
09 Jan 2009 |
| Thank You for pointing me in some direction. I will look into this.
Rgds,
--
Tausif Mohammed
"Ken Slovak - [MVP - Outlook]" wrote:
> The Outlook object model doesn't explicitly expose property you'd need for
> that. If you are using Outlook 2007 you could use the
> MailItem.PropertyAccessor object to look at that property using a MAPI
> property tag, otherwise you'd need to... |
| Recursively set Auto Archive settings on a sub folder |
Tara H |
0 / 3 |
09 Jan 2009 |
| Thanks!
It wasn't the one I found before but it might have enough in it to let me
reassemble what I need :)
"TruBlu" wrote:
> Check out
> http://blogs.msdn.com/jmazner/archive/2006/10/30/setting-autoarchive-properties-on-a-folder-hierarchy-in-outlook-2007.aspx
>
> Hope this helps.
>
> TruBlu
>
>
>
> "Tara H" wrote:
>
> > A year or so ago I found a piece of code... |
| Getting cdoPR fields for names listed in Global Address List - err |
Dmitry Streblechenko |
0 / 2 |
08 Jan 2009 |
| And what is the exact error?
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"G Elliott" <G Elliott@discussions.microsoft.com> wrote in message
news:2079AF6F-48EB-4A10-B69D-8C8919C818A1@microsoft.com...
>I want to access several fields for names listed in the GAL, such as
> Department, Phone, etc. I found this sample code... |
| Remove Meeting from Sender's Calendar with VBA |
Steve |
0 / 2 |
08 Jan 2009 |
| I think I may have answered my own question. I just these two lines of code:
myItem.MeetingStatus = olMeetingCanceled
myItem.Delete
to the end of my procedure and the meeting is removed from the sender's
calendar without affecting the recipient's calendar.
"Steve" wrote:
> I have code set up in an Access 2003 db to send a meeting invite to a
> recipient and it works fine. The... |
| Creating a Simple Macro |
bluedolphin |
0 / 3 |
08 Jan 2009 |
| I am using OUTLOOK 2000
"Michael Bauer [MVP - Outlook]" wrote:
>
>
> Are you talking about Outlook (2007) or Word?
>
> --
> Best regards
> Michael Bauer - MVP Outlook
>
> : Outlook Categories? Category Manager Is Your Tool
> : VBOffice Reporter for Data Analysis & Reporting
> : <http://www.vboffice.net/product.html?pub=6&lang=en>
>
>
> Am Thu, 8 Jan 2009... |
| Czech Bitch |
Betales |
0 / 1 |
07 Jan 2009 |
| Hi,
i am here sitting in the internet caffe. I am 18 y.o. czech bitch girl.
I have a picture if you want. Reply here and I will send you reply with my nude fotos.... |
| Manipulating the font in a newly created olMailItem??? |
Dmitry Streblechenko |
0 / 6 |
07 Jan 2009 |
| There is a gazillion ways you can create your HTML body (tables, etc) that
looks exactly the same to an end user.
How that will be translated to plain text (Body property), obviously depends
on the original HTML.
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"cmonroe21 via OfficeKB.com" <u48566@uwe> wrote in message... |
| Question about CDO 1.21 |
Bob Smith |
0 / 4 |
07 Jan 2009 |
| Got it working, thanks for your help.
"Ken Slovak - [MVP - Outlook]" wrote:
> This has nothing to do with CDO and everything to do with using a For...Each
> loop. That and a count up For loop establish an index counter into the
> collection of items and every time you delete an item it messes with the
> index. Usually that results in deleting 1/2 of the items within the loop.
>... |
| What's with the underscore? (not as a line-continuer) |
cmonroe21 via OfficeK... |
0 / 3 |
07 Jan 2009 |
| Ahh. I see. Thanks!
Ken Slovak - [MVP - Outlook] wrote:
>COM (Component Object Model). Google for tons of information on COM.
>
>The underscore leading a class name is often used for abstract classes.
>
>>I have noticed that an underscore character sometimes precedes certain
>>items,
>[quoted text clipped - 3 lines]
>> anything
>> to do with a COM object? If so, what is COM?... |
| Writing text to the "read message" |
cmonroe21 via OfficeK... |
0 / 7 |
07 Jan 2009 |
| Thanks so much for your help!
Ken Slovak - [MVP - Outlook] wrote:
>Plain text is almost impossible to align correctly and unless you're using
>WordMail and use the Word object model to format things you can't even
>access things like font, etc. in a plain text message. For that you'd use
>Inspector.WordEditor which is a Word.Document object.
>
>If it's HTML then you use Inspector.... |
| Old email address displays when I send a word doc as an attachment |
Vinnie |
0 / 1 |
07 Jan 2009 |
| When sending a email message by having a document open in word and then just
choosing the send to mail receipient as an attachment, OUTLOOK displays an
old email address that does not exist on our work domain any longer. When I
send normal emails my address shows up!!!
--
Thanks,
Vinnie... |
| Time Stamp on Messages |
Ken Slovak - [MVP - O... |
0 / 4 |
07 Jan 2009 |
| Neither of those are valid time zone values. The maximum possible valid
value is CdoTmzMax = 52. Anything above that is invalid and caused by
corruption of some sort.
CDO uses the property value in the first DWORD of 0x7D020102 for the CDO
time zone. It can become corrupted if accesses are made from another time
zone, if the Windows time zone struct from the registry doesn't match... |
| Can I disable Outlook warning from Excel macro "Send" method |
wpiet |
0 / 15 |
07 Jan 2009 |
| Hey, I'm always open to any suggestion. I have no idea what I'm doing! It's
all new to me, so any insight is appreciated. I had a few other issues rear
their ugly heads but seem to have worked them out. The last few times I've
run it through, it seems to be OK. Thanks for all your help.
--
Will
"JP" wrote:
> I was going to say something about that, but you said it worked, so I... |
| XP Vista & Office Cheap! |
Mamiko |
0 / 1 |
07 Jan 2009 |
| XP Home US$19, Pro US$29
Vista US$29 Up
MS Office US$49 Up... |
| Auto emails in Outlook 2003 |
Michael Bauer [MVP - ... |
0 / 2 |
07 Jan 2009 |
| This sample uses VBA to accomplish that:
http://www.vboffice.net/sample.html?mnu=2&pub=6&lang=en&smp=10&cmd=showitem
--
Best regards
Michael Bauer - MVP Outlook
: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>
Am Tue, 6 Jan 2009 16:29:09 -0800 (PST) schrieb... |
| Errors when returning Outlook folder properties |
Ziggy |
0 / 3 |
06 Jan 2009 |
| Indeed FolderPath doesn't return much useful data. I ended up using a bit of
.StoreID hacking which gives the full path.
Thanks
"Ken Slovak - [MVP - Outlook]" wrote:
> Where does it error out? You need to step your code and see what's going on
> and where it's choking.
>
> At best the FolderPath for a PST file will be something like "\\Personal
> Folders". It won't be the... |
| Time Stamp on Messages |
Dmitry Streblechenko |
0 / 1 |
06 Jan 2009 |
| How and when doyou read the property? It is supposed to be stored in the UTC
timezone. Outlook UI and CDO 1.21 (through the Message.ReceivedTime
property) convert the value to teh local timezone.
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Bob Smith" <BobSmith@discussions.microsoft.com> wrote in message... |
| Import a New field? |
Dmitry Streblechenko |
0 / 2 |
06 Jan 2009 |
| See MailItem.UserProperties collection.
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Robby" <Robby@discussions.microsoft.com> wrote in message
news:BB6E0147-7AE4-461D-8B18-362548E7B9EC@microsoft.com...
> Hello,
>
> Is there any way to create/add a new field in MS Outlook. Basically I just
> want to import a field... |
| Access Excel (whether already open or not) from Outlook |
wpiet |
0 / 3 |
06 Jan 2009 |
| That would be why.
I'll file that one under "You da man, Norman."
Thanks
--
Will
"Norman Yuan" wrote:
> D you know GetObject() takes TWO optional arguments? The first one is
> PathName, and the second one is the ClassName.
>
> Your code supplies "Excel.Application" as the first argument as PthName,
> which points to nothing and omits the second argument, thus, the... |
| Accessing Form1 control values from Form2 |
cmonroe21 via OfficeK... |
0 / 3 |
06 Jan 2009 |
| Thanks so much! I was sort of using this convention by:
Set objPage = Item.GetInspector.ModifiedFormPages("Message")
Set objControl = objPage.Controls("TextBox1")
MyValue - objControl.Value
But for some reason it wasn't working :( I've decided to scratch the Outlook
script editor and opt to use Vba in VB editor. Instead of messing with
swapping between the Message and P.2 tabs, and... |
| Creating custom action when responding to meetings |
sturose2000 |
0 / 1 |
06 Jan 2009 |
| Hello,
I occasionally receive meeting requests that I cannot attend, but for
archival/information purposes I would like to keep a copy of these meetings
in my calendar. I typically handle these by responding "Tentative" and then
putting a message to the organizer that I want to keep the appointment but
will not attend the meeting. Instead, I would prefer to send a "Decline"... |
| qV^fU_hZ ^ ]U`U]qWU_hZ |
Devivci |
0 / 1 |
06 Jan 2009 |
| ... |
| Enable/disable rules with VBA (outlook 2003) |
Ken Slovak - [MVP - O... |
0 / 2 |
06 Jan 2009 |
| There is no interface to the rules module in Outlook 2003, there is in
Outlook 2007, but that won't help you.
--
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
"Moris7" <Moris7@discussions.microsoft.com> wrote in message... |
| Deleting contacts permanenetly |
Ken Slovak - [MVP - O... |
0 / 2 |
05 Jan 2009 |
| Not using the Outlook object model, no. If you use CDO 1.21 or Redemption
(www.dimastr.com/redemption) or Extended MAPI (C++ or Delphi only) you can
delete items permanently while bypassing Deleted Items. Otherwise you have
to handle ItemAdd on the Deleted Items folder's Items collection and then
delete those items again from Deleted Items.
--
Ken Slovak
[MVP - Outlook]... |
| Non-SMTP Address |
Ken Slovak - [MVP - O... |
0 / 2 |
05 Jan 2009 |
| OWA uses WebDAV but it's a completely separate application with its own
views into a mailbox and its own set of limitations. The OWA program runs as
a Web app on the IIS server and has no relation to Outlook's use of MAPI. To
customize the OWA program you must re-write it, a topic (as with your
question) better suited to an Exchange development group than an Outlook
development group.... |
| Prompt email subject line when creating a new email outlook 2003 |
Ken Slovak - [MVP - O... |
0 / 2 |
05 Jan 2009 |
| You will need to handle the NewInspector event of the Inspectors collection
and then pop up your subject prompt form there. You might not be able,
depending on the Outlook version, to actually set the Subject property of
Inspector.CurrentItem until the first Activate event fires on that Inspector
however.
See www.outlookcode.com for examples of code to handle NewInspector.
--... |
| deleting emails part 2 |
Ken Slovak - [MVP - O... |
0 / 2 |
05 Jan 2009 |
| Get the folder, get its Items collection and handle the ItemAdd event on
that Items collection. That will fire every time an item is added to the
folder. Look up "ItemAdd" at www.outlookcode.com for various examples of how
to set all that up.
When you delete items in a collection never use a For...Each or For loop, as
you delete items you're changing the index and the count so you... |
| -ZH:@ como ganhar dinheiro na internet , dinheiro rapido, dinheironavegando, ... |
Ganhe dinheiro na int... |
0 / 1 |
04 Jan 2009 |
| http://ganhar-dinheiro-pela-internet.vila.bol.com.br/
Essa semana, eu conheci um site muito interessante. Nele ha
varios e-books de diversos temas interessantes, alem disso, eh um site de
investimento, onde o valor pago retorna para nos com lucro de 300%.
Voce efetua um pagamento unico de R$ 30,00, tem o direito a baixar mais de
30 apostilas onlines de diversos temas:
-... |
| deleting emails |
hb21l6 |
0 / 2 |
04 Jan 2009 |
| ahh, no worries, i've sorted it.. found a nice little sample :O)
Set inbox = Application.Session.GetDefaultFolder(olFolderInbox)
Set Root = inbox.Parent
Set myFolder = Root.Folders("SPAMfighter")
If myFolder.Name = "SPAMfighter" Then
For Each Item In myFolder.Items
Item.Delete
Next
End If
End Sub... |
| Including an attachment box via code (and a textbox?) |
Ken Slovak - [MVP - O... |
0 / 2 |
03 Jan 2009 |
| Where is the attachment code running? Do you need users to be able to browse
for the file to attach?
When you post let us know where the code is running, what language you're
using and what versions or Outlook you want to support. Also provide any
other relevant information so people can answer your questions.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author:... |
| Including an attachment box via code (and a textbox?) |
cmonroe21 |
0 / 2 |
02 Jan 2009 |
| I am researching the Attachment.Add Method, but I could really use some help!
:-/
cmonroe21 wrote:
>I just posted a thread, and although this question has to do with the same
>project it is an unrelated quesion.
>
>I need the composer of my email form to be able to attach a file. I know
>nothing about this aspect of the coding, so I have just shrunk the compose
>message main message... |
| Macro not working under Vista |
Ken Slovak - [MVP - O... |
0 / 10 |
02 Jan 2009 |
| Most likely you would have to use the Win32 API call for that.
The VB6 common files dialog OCX (comdlg32.ocx) isn't available in Vista as
confirmed at http://msdn.microsoft.com/en-us/vbrun/ms788708.aspx, so you
have to set up the needed structs and directly call the common files dialog
dll, which is what the OCX does (and probably also the scripting method).
The other alternative is... |
| Create macro in Outlook 2007 |
Michael Bauer [MVP - ... |
0 / 5 |
02 Jan 2009 |
| A good place to start with is the VBA help. Open the object browser (f2),
and switch from <All Libraries> to Outlook. In the left pane you see all the
objects; select one, then all of the properties and methods of the selected
object will be listed in the right pane. If you select one item and press
f1, you'll get to the appropriate page of the help file. Most of the stuff
comes with a... |