What's with the underscore? (not as a line-continuer)
Tue, 06 Jan 2009 20:36:18 GMT
I have noticed that an underscore character sometimes precedes certain items,
i.e. MailItem vs. _MailItem. Or like in Outlook the name of the message in
the "Read Page" of a message form is _DocSiteControl. Does it have anything
to do with a COM object? If so, what is COM? Just curious! :)
--
Message po ...
|
Access Excel (whether already open or not) from Outlook
Tue, 6 Jan 2009 11:23:09 -0800
What am I doing wrong with this code?
Dim XL As Object
On Error Resume Next
Set XL = GetObject("Excel.Application")
If XL Is Nothing Then
Set XL = CreateObject("Excel.Application")
End If
XL.Visible = True
I was under the impression that, if an instance of Excel is alrea ...
|
Import a New field?
Tue, 6 Jan 2009 11:01:01 -0800
Hello,
Is there any way to create/add a new field in MS Outlook. Basically I just
want to import a field that exists in one of my Access tables to Outlook.
I have been informed that I need to use VBA to accomplish this. Can someone
walk me through the steps required to do this and provide a sample snippe ...
|
Manipulating the font in a newly created olMailItem???
Tue, 06 Jan 2009 18:46:05 GMT
I have a form that creates and sends a new MailItem on a button click that
includes the info from the form controls in text in the email body. I need
to figure out how to manipulate the font of this newly created MailItem (an
olMailItem) so that I can get it into a monospace font (I think that's what
it's calle ...
|
Creating custom action when responding to meetings
Tue, 6 Jan 2009 09:00:01 -0800
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
w ...
|
???q?V?^?f?U?_?h?Z ?^ ?]?U?`?U?]?q?W?U?_?h?Z
Tue, 06 Jan 2009 06:14:15 -0800
ÈGÈHÈEÈP ÈcÈU ÈBÈCÇõÈPÇý ÇöÈCÇ÷ Çü ÈEÈCÇúÇ÷ÇøÈFÈGÇõÈC 2008-09!
...
|
Errors when returning Outlook folder properties
Mon, 5 Jan 2009 20:09:00 -0800
I am trying to create a vbscript to go through users' Outlook folders and
return the paths to their PSTs.
Set myolApp = CreateObject("Outlook.Application")
Set objNS = myolApp.GetNameSpace("MAPI")
For Each objFolder in objNS.Folders
wscript.echo objFolder.Name & ": " & objFolder.FolderPath
Next
This ...
|
|
|
Enable/disable rules with VBA (outlook 2003)
Mon, 5 Jan 2009 17:56:01 -0800
Hi,
i have a rule that forward email when it comes from a specific email adress.
I would like to disable this rule when i open Outlook and enable it before
(or while) i am closing Outlook. This is a server side rule, i don't know if
that matters.
Can it be done with a macro or anything else. I'm using ...
|
Deleting contacts permanenetly
Mon, 5 Jan 2009 21:27:52 -0000
Hi
When I use Itemcontact.delete the contact is deleted and ends up in deleted
items folders. Is there any way the contact does not end up in deleted items
folder when it is deleted via code?
Thanks
Regards
...
|
CreateObject Fails with Error 429
Mon, 5 Jan 2009 08:30:50 -0800 (PST)
I am attempting to run this code in Outlook and get a "Run-Time Error
'429': ActiveX component can't create object"
I am doing this with Outlook and Excel 2007. This is my first attempt
to automate one application from within another. What might cause the
CreateObject call to fail?
Sub OpenExcel()
Di ...
|