| Thread | Last Author | Messages read/total | Date |
|---|
| Outlook crashes when using PasteFace() method. |
Adi |
7 / 7 |
10 Oct |
| Thanks for your help.... |
| HTMLEditor pasting loses <BR> tags |
BertrandG |
4 / 4 |
09 Oct |
| Hi,
OK ! I feel a bit lost. I work in a support organization, and very often I
have to change only a part of the text in the email body. The mails (html,
RTF,...) are coming from the customers we are supporting.
I tried to find a solution with the clipboard the selection ... but never
sorted it out ...
Have a nice day.
WBR /bertrand
"DaveS" wrote:
> Hi Bettrand,
>
>... |
| Location of personal folder in Outlook |
Bruno News |
2 / 2 |
07 Oct |
| You can retrieve that info from the Outlook session you are in. Another
method would be to pull the data from the profile's registry keys, but I
don't have an example of how to do that. :-)
From within Outlook, you can use the following code snippet to get to all
the stores of the profile you are in and then get the file path of each one.
With the file path, you can then use the... |
| Advice needed |
Anrey Terkin |
1 / 1 |
02 Oct |
| i need help on my download scam site
the who is dns server is not working with my php database.
can anyone help?
you can email me directly or use this address
Address: Truda 14-1
City: Saint-Petersburg
State: Saint-Petersburg
ZIP: 188934
Country: RU
Phone: +7.9113234634
the site is
www.quicksoftupdate.com
thanks... |
| Very simple and basic requirement |
telepath2000 |
3 / 3 |
23 Sep |
| ... |
| Outlook behaving very sluggish and weird |
Alan B. |
1 / 1 |
19 Sep |
| For the past several days Outlook 2000 SP4 on Win 2000 Pro SP4 has been
behaving very strange.
When I delete an open email, it seems to have been deleted, but the open
email stays on the screen until I click the mouse anyplace on the screen -
then the screen updates and the previously deleted email closes.
I've scanned for viruses and don't have any.
Anybody ever experience this?... |
| How to automate backup of outlook files? |
Ken Slovak - [MVP - O... |
6 / 6 |
17 Sep |
| GetObject() would return the running instance of Outlook if there is one,
unless a script stopper was running that prevented that method from working.
You would use "Outlook.Application" as the argument to GetObject() or
CreateObject().
The task would be in the same context as whatever else you're running. If
your code kills an Outlook instance it would kill it for everyone, since... |
| Redemption: FlagDueBy property returns value 1/1/4500 |
Sandeep |
4 / 4 |
15 Sep |
| Ok, thank you michael and Dmitry for your response and suggestion... |
| Update Meeting Requests |
bolzy1981@gmail.com |
1 / 1 |
13 Sep |
| Hi Everyone,
In our exchange environment we have a number of user accounts setup
for meeting room bookings. Recently we had a problem and lost those
mailboxes, the Free/Busy data can still be seen but if you open the
calendar they are completely blank.
I am wondering if anyone knows of a way that I can run a script to:
1) Check a users calendar entries from "today" onwards
2) Look... |
| Need suggestion on VBA Macro Code for use in Outlook |
witwim1@gmail.com |
3 / 3 |
12 Sep |
| That worked great!
Thanks!!... |
| [VSTO] Addin to prohibit to add attachments |
Ken Slovak - [MVP - O... |
4 / 4 |
11 Sep |
| For an open item it's only Inspectors you have to be concerned with.
When WordMail is being used you won't be able to repurpose the original
buttons because they aren't exposed to you as you've found.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.... |
| Get Clipboard from outlook.mailitem |
Tom |
6 / 6 |
11 Sep |
| this works fine in Outlook VBA
Private Function GetClipBoardData() As String
Dim lngClipMemory As Long
Dim lngHandle As Long
Dim strTmp As String
Dim lngTmp As Long
On Error GoTo PROC_ERR
If OpenClipboard(0&) <> 0 Then
lngHandle = WinGetClipBoardData(CF_TEXT)
If lngHandle <> 0 Then
lngClipMemory = GlobalLock(lngHandle)
strTmp = Space$(mcIntMaxSize)... |
| Determine language of newly composed email |
JP |
2 / 2 |
10 Sep |
| ... |
| Toggle read/unread |
Ken Slovak - [MVP - O... |
2 / 2 |
10 Sep |
| Macros in Outlook don't use shortcuts like that, you'd have to put a custom
button on a toolbar or menu that called your macro.
Did you know that Ctrl+Q will mark all selected emails as read, and Ctrl+U
will mark them as unread? If you want to use those existing shortcuts you
don't need any macros.
There's information on putting a macro on a toolbar at www.outlookcode.com
if you... |
| Handling Meeting Request send in outlook 2007. |
Ken Slovak - [MVP - O... |
4 / 4 |
08 Sep |
| Meeting requests will only be processed in the default calendar folder. If
moving it back to that folder and sending using code doesn't work then you'd
have to do your processing in the item.Send() event handler.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.... |
| citrate de sildenafil bon marche ed paquets dessai belgique acheter ed paque... |
sdgvfwe@yahoo.is.com |
1 / 1 |
06 Sep |
| citrate de sildenafil bon marche ed paquets dessai belgique acheter ed paquets dessai commander ed paquets dessai us usa par mail Achetez Le ed paquets dessai canada
+++ SANTE MASCULINE +++ SANTE MASCULINE +++ SANTE MASCULINE +++
+
ACHETER VIAGRA BON MARCHE (ALL CARDS ACCEPTED !!!)
http://jhku.net/ACHETER-VIAGRA-BON-MARCHE/
http://jhku.net/ACHETER-VIAGRA-SOFT/
http://jhku.... |
| on acheter valium us usa a vendre in Newton achat valium Pro Acheter achat va... |
sdgvfwe@yahoo.is.com |
1 / 1 |
06 Sep |
| on acheter valium us usa a vendre in Newton achat valium Pro Acheter achat valium canada en ligne sur internet on acheter valium en France a vendre acheter valium commander en ligne
+++ Anti Inquietude +++ Anti Inquietude +++ Anti Inquietude +++
+
+
+
ACHETER VALIUM BON MARCHE (ALL CARDS ACCEPTED !!!)
http://jhku.net/ACHETER-VALIUM-BON-MARCHE/
http://jhku.... |
| outlook macro |
Ken Slovak - [MVP - O... |
2 / 2 |
05 Sep |
| You might have better luck asking this in an Excel group since the
question's based on specific Excel behavior.
--
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 Brivio" <a.brivio@adb.it> wrote in message... |
| How to attack the problem with activeX configuration, when vba programming i... |
Ken Slovak - [MVP - O... |
2 / 2 |
04 Sep |
| You might want to post this in an Excel group since it seems to have nothing
to do with Outlook.
You also aren't presenting enough information for anyone to really help you.
Is scripting installed on the computer where things aren't working? Is an
A-V program running there that might stop scripting operations? Have you run
in debug mode to see where you get errors?
--
Ken Slovak... |
| not found PR_SENDER_NAME |
Dmitry Streblechenko |
6 / 6 |
03 Sep |
| How exactly do you open the message directly from Outlook? Do you create a
temporary profile and connect to the mailbox in the online mode?
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Liam" <liamhar@gmail.com> wrote in message
news:8b3e812e-c295-45b1-bfaa-5a2e705c0fc7@f36g2000hsa.googlegroups.com...
* Same profile... |
| Save multiple items in selection |
Ken Slovak - [MVP - O... |
8 / 8 |
02 Sep |
| If there is an explanation it's not something I know of. I don't really see
much difference other than of course when the flag status is updated.
--
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
"deschman" <newsscha@gmail.com>... |
| FilesInUse with Visual Studio deployment project |
Dima Pasko |
3 / 3 |
02 Sep |
| ... |
| Adding the users to distribution list in GAL from Outlook 2007 |
Ken Slovak - [MVP - O... |
2 / 2 |
02 Sep |
| You'd have to use ADSI code to write entries to the GAL, you can't do that
using Outlook object model code. Changing GAL entries or adding to a GAL DL
is a server-side operation.
--
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... |
| Attaching events to the folder in Outlook 2007 |
Sunil |
6 / 6 |
02 Sep |
| Thanks Ken. I will put more thought on this approach. Mean time, the item
add event on the folder gets fired even single item is added in the folder.
I am able to retain the event association to the folder by attaching the
event to the folder in the Item send of the Addin.
Thanks,
Sunil
"Ken Slovak - [MVP - Outlook]" wrote:
> The ItemAdd event will fire unless 16 or more... |
| Macro get name from TO and put in Dear ... |
Mark |
8 / 8 |
01 Sep |
| BTW
I have been playing with this concept and learning a bit of VBA in the
process. I decided to try and include fields to look like a reply email from
Outlook (see code below). All works ok for me, though it is a bit slow
somtimes.
If anybody has any suggestions on how to improve this I'd like to hear from
you.
Mark
Sub Dear()
Dim myItem As Outlook.MailItem
Dim... |
| Business Card. |
Ken Slovak - [MVP - O... |
2 / 2 |
29 Aug |
| MailItem.AddBusinessCard(oContact) is how you use it. You must have a
contact item that you supply to the method and that contact must have a
business card. What you get depends on the BodyFormat of the mail item, as
discussed in the VBA Object Browser help on that method.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.... |
| =?ISO-8859-1?Q?=CF=EE=EC=EE=F9=FC =E0=F1=EF=E8=F0=E0=ED=F2=E0=EC?=51548 |
=?ISO-8859-1?Q?=CF=EE... |
0 / 1 |
29 Aug |
| This is a multi-part message in MIME format
--=_NextPart_2rfkindysadvnqw3nerasdf
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
=C2=EE=F1=F2=EE=F7=ED=EE=F3=EA=F0=E0=E8=ED=F1=EA=E8=E9 =E8=ED=F4=EE=F0=EC=
=E0=F6=E8=EE=ED=ED=EE-=E0=ED=E0=EB=E8=F2=E8=F7=E5=F1=EA=E8=E9 =F6=E5=ED=F2=
=F0 ( http://ukrdiss.narod.ru )
- =EE=F0=E3=E0=ED=E8=E7=E0=F6=E8=FF =F1... |
| Access Signatures in Outlook 2007 using C# |
Sunil |
0 / 5 |
28 Aug |
| Thanks Ken,
Sunil
"Ken Slovak - [MVP - Outlook]" wrote:
> Nothing in the object model. You can inventory signatures by scanning all
> the files in that folder.
>
> --
> 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... |
| Send an Outlook Task Request with a runnable script when accept is clicked... |
AshokG |
0 / 1 |
26 Aug |
| Hi,
I'm using OOM to send an Task Request. I want to attach some VB script along
with it so that when user accepts it will prompt and create corresponding
calendar event etc. in his outlook.
Is this possible?
NB: I don't want to use the Outlook Add-in functionality as I don't want the
user to download and install any add-ins
As some one mentioned I don't mind publishing the Form.... |
| VBA to create task in Shared Mailbox Tasks Folder |
Sue Mosher [MVP-Outlook] |
0 / 3 |
25 Aug |
| Unfortunately, GetSharedDefaultFolder can't help you work with a subfolder of
a shared folder. Instead, you need to walk the folder hierarchy or use a
function that does that for you. Once you have the folder, you then call the
Add method on its Items collection, for example:
Set objFolder = GetFolder("Mailbox - Solutions\Tasks\August08")
Set objTask = objFolder.Items.Add("IPM.Task")... |
| Exception when trying to download FullArticle from RDORssItem : Redemption |
Sandeep |
0 / 6 |
25 Aug |
| yea it worked and full article was also extracted. For now i will just
catch the exception until its next official release and when upgrade
to it.
Thanks,
Sandeep Nakarmi... |
| TOTAL noob needs HELP! |
wytchcat@gmail.com |
0 / 1 |
20 Aug |
| Hi all,
I THINK I am addressing the right group but be patient with me if
not. I was given this task and while I have no issues teaching myself
technical tasks... I need more than two days to do it usually.. so
HELP!?
I have recently been handed an organizational task involving Outlook
2007 predominantly, although Word as well. I am not sure if this
should be done as an Outlook or... |
| Trigger Add-In Function |
Michael Bauer [MVP - ... |
0 / 8 |
18 Aug |
| 1) You may download OutlookSpy from www.dimastr.com. Click Explorer /
Commandbars and see what's available.
2) If it's a COM Addin, you should be able to add a reference to it to your
VBA project. Then you may see its objects in the object browser.
--
Best regards
Michael Bauer - MVP Outlook
: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category... |
| Outlook To Do list : Redemption |
Dmitry Streblechenko |
0 / 2 |
18 Aug |
| Call RDOSession.GetDefaultFolder(olFolderToDo) (or
RDOstore.GetDefaultFolder(olFolderToDo)).
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Sandeep" <sandeep.nakarmi@gmail.com> wrote in message
news:286ea532-9c03-4cf9-98d9-5c91270a98ec@n38g2000prl.googlegroups.com...
>I want to extract the items and its information... |
| hdmi auf dvi kabel hdmi op dvi d kabels dvi i kabel 24 5 hdmi kabel von unter... |
sdgvfwe@yahoo.is.com |
0 / 1 |
15 Aug |
| hdmi auf dvi kabel hdmi op dvi d kabels dvi i kabel 24 5 hdmi kabel von unterschied dvi hdmi
+
+
+
+++ BILLIGE HDMI KABEL KAUFEN +++ BILLIGE DVI KABEL KAUFEN +++
+
+
http://HDMI-KABEL.BUYONLINE24.INFO
http://HDMI-KABEL.BUYONLINE24.INFO
http://HDMI-KABEL.BUYONLINE24.INFO
http://HDMI-KABEL.BUYONLINE24.INFO
http://HDMI-KABEL.BUYONLINE24.INFO
http://HDMI-KABEL.BUYONLINE24.INFO... |
| Free Advertising |
Gizmo |
0 / 1 |
11 Aug |
| In an effort to increase traffic to our new news group we now offering FREE
UNMODERATED chat and advertising
just go to
free.uk.retail.poundland.staff.chat... |
| acheter lipitor canada bon marche dans commande acheter lipitor canada corpus... |
sdgvfwe@yahoo.is.com |
0 / 1 |
11 Aug |
| ... |
| Espana Canada barato en linea viagra generico VENTA de VIAGRA Barata Viagra v... |
sdgvfwe@yahoo.is.com |
0 / 1 |
11 Aug |
| Espana Canada barato en linea viagra generico VENTA de VIAGRA Barata Viagra venta libre ansiedad compra viagra
+++ SALUD HOMBRES +++ SALUD HOMBRES +++ SALUD HOMBRES +++
+
COMPRAR VIAGRA BARATO (ALL CARDS ACCEPTED !!!)
http://jhku.net/COMPRE-VIAGRA-BARATO/
http://jhku.net/COMPRAR-VIAGRA-SUAVE/
http://jhku.net/PAQUETES-DE-de-PRUEBA/
+
+
+
COMPRAR CIALIS BARATO (ALL CARDS... |
| acheter achat zyban canada concernes par cette achat zyban commander comprime... |
sdgvfwe@yahoo.is.com |
0 / 1 |
11 Aug |
| ... |
| acheter votre phentermine phentermine belgique sur internet phentermine comma... |
sdgvfwe@yahoo.is.com |
0 / 1 |
10 Aug |
| acheter votre phentermine phentermine belgique sur internet phentermine commande en ligne comprimes de phentermine en France femme en termes de phentermine canada
+++ PERTE DE POIDS +++ PERTE DE POIDS +++ PERTE DE POIDS +++
+
+
+
ACHETER PHENTERMINE BON MARCHE (Western Union, Diners, AMEX, VISA)
http://jhku.net/ACHETER-PHENTERMINEA-BON-MARCHE/
+
+
+
ACHETER MERIDIA BON... |
| sportschuhe uebergroessen pumps uebergroessen uebergroessen stuttgart schuhe ... |
sdgvfwe@yahoo.is.com |
0 / 1 |
10 Aug |
| sportschuhe uebergroessen pumps uebergroessen uebergroessen stuttgart schuhe uebergroessen herrenmode in uebergroessen
+
+
+
+++ UEBERGROESSEN KAUFEN +++ UEBERGROESSEN ONLINE BESTELLEN +++
+
http://WWW.UEBERGROESSEN-KAUFEN-24.INFO
http://WWW.UEBERGROESSEN-KAUFEN-24.INFO
http://WWW.UEBERGROESSEN-KAUFEN-24.INFO
http://WWW.UEBERGROESSEN-KAUFEN-24.INFO
http://WWW.... |
| allergy antibiotic ampicillin in pregnancy klebsiella antibiotic ampicillin s... |
sdgvfwe@yahoo.is.com |
0 / 1 |
09 Aug |
| allergy antibiotic ampicillin in pregnancy klebsiella antibiotic ampicillin sodium ampicillin resistant gene
+++ ANTIBIOTICS +++ ANTIBIOTICS +++ ANTIBIOTICS +++
+
+
http://jhku.net/BUY-AMPICILLIN/
http://jhku.net/BUY-AMPICILLIN/
http://jhku.net/BUY-AMPICILLIN/
http://jhku.net/BUY-AMPICILLIN/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Alabama, Alaska,... |
| damenkleidung kaufen groesse gebrauchte damenbekleidung bestellen damen weste... |
sdgvfwe@yahoo.is.com |
0 / 1 |
08 Aug |
| damenkleidung kaufen groesse gebrauchte damenbekleidung bestellen damen weste bestellen damenbekleidung bestellen koeln damenkleidung kaufen
+
+
+
+++ DAMENKLEIDUNG KAUFEN +++ DAMENKLEIDUNG ONLINE BESTELLEN +++
+
http://WWW.DAMENKLEIDUNG-KAUFEN-24.INFO
http://WWW.DAMENKLEIDUNG-KAUFEN-24.INFO
http://WWW.DAMENKLEIDUNG-KAUFEN-24.INFO
http://WWW.DAMENKLEIDUNG-KAUFEN-24.INFO... |
| acquerir achat zyban en France soft achat zyban canada suisse acheter zyban a... |
sdgvfwe@yahoo.is.com |
0 / 1 |
08 Aug |
| ... |
| Detect completion of Outlook Send/Recieve programatically (vbs |
Alban |
0 / 13 |
07 Aug |
| Hi,
I face the same problem than Jaswicki. I used the code, I tryed it in many
configuration, I have never gotten any sycn event fired (neither start, end
or progress).
Here is a standalone code that should work according to your discussion. Any
clue?
Imports Outlook = Microsoft.Office.Interop.Outlook
Module Module1
Public Interface SyncObjectEvents
End Interface... |
| Automatically get outlook email information in Word |
wusf47@gmail.com |
0 / 1 |
06 Aug |
| Dear all,
I have a need to use ms-word as a tool to store emails.
To do that, I just drag and drop an email from outlook to a word
table.
I am wondering whether it is possible to automatically display basic
information of the email (to, from, date... etc) in another column in
the world table.
Any pointer welcome.
sfwu... |
| log file |
Michael Bauer [MVP - ... |
0 / 2 |
04 Aug |
| Here's a simple example for how to write a file:
http://www.vboffice.net/sample.html?pub=6&mnu=1&smp=14&cmd=showitem&lang=en
This might work for you:
Sub Example()
On Error goto ERR_HANDLER:
'...your code
Exit Sub
ERR_HANDLER:
WriteFile Err.Description & vbcrlf
End Sub
--
Best regards
Michael Bauer - MVP Outlook
: VBOffice Reporter for Data Analysis & Reporting... |
| Outlook Calendar Export - Macro help! |
Michael Bauer [MVP - ... |
0 / 2 |
04 Aug |
| See microsoft.public.outlook.program_vba
--
Best regards
Michael Bauer - MVP Outlook
: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: <http://www.vboffice.net/product.html?pub=6&lang=en>
Am Mon, 4 Aug 2008 08:08:31 -0700 (PDT) schrieb p:
> Hi,
>
> I'm fairly experienced writing Excel VBA but don't really know... |
| Help with creating multiple new messages using VBA |
Michael Bauer [MVP - ... |
0 / 2 |
04 Aug |
| Have you seen my answer in microsoft.public.outlook.program_vba?
--
Best regards
Michael Bauer - MVP Outlook
: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: <http://www.vboffice.net/product.html?pub=6&lang=en>
Am Mon, 4 Aug 2008 11:50:14 -0700 (PDT) schrieb Thomas.J.Howe@gmail.com:
> I was hoping one (or more)... |
| How to detect who made changes in Calendar? |
Ken Slovak - [MVP - O... |
0 / 2 |
04 Aug |
| To see if there's any software out there that does that look at the
Utilities page at www.slipstick.com.
To see if there's already a macro like that search at www.outlookcode.com.
If you need to code it yourself then it's certainly possible.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended... |