ThreadLast AuthorMessages
read/total
Date
Update Meeting Requests
bolzy1981@gmail.com
1 / 1 13 Sep 2008
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 2008
That worked great! Thanks!!...
[VSTO] Addin to prohibit to add attachments
Ken Slovak - [MVP - O...
4 / 4 11 Sep 2008
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 2008
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 2008
...
Toggle read/unread
Ken Slovak - [MVP - O...
2 / 2 10 Sep 2008
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 2008
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 2008
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 2008
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 2008
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 2008
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 2008
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 2008
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 2008
...
Adding the users to distribution list in GAL from Outlook 2007
Ken Slovak - [MVP - O...
2 / 2 02 Sep 2008
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 2008
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 2008
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 2008
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...
1 / 1 29 Aug 2008
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
5 / 5 28 Aug 2008
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
1 / 1 26 Aug 2008
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]
3 / 3 25 Aug 2008
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
6 / 6 25 Aug 2008
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
1 / 1 20 Aug 2008
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 - ...
8 / 8 18 Aug 2008
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
2 / 2 18 Aug 2008
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
1 / 1 15 Aug 2008
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
1 / 1 11 Aug 2008
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
1 / 1 11 Aug 2008
...
Espana Canada barato en linea viagra generico VENTA de VIAGRA Barata Viagra v...
sdgvfwe@yahoo.is.com
1 / 1 11 Aug 2008
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
1 / 1 11 Aug 2008
...
acheter votre phentermine phentermine belgique sur internet phentermine comma...
sdgvfwe@yahoo.is.com
1 / 1 10 Aug 2008
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
1 / 1 10 Aug 2008
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
1 / 1 09 Aug 2008
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
1 / 1 08 Aug 2008
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
1 / 1 08 Aug 2008
...
Detect completion of Outlook Send/Recieve programatically (vbs
Alban
13 / 13 07 Aug 2008
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
1 / 1 06 Aug 2008
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 - ...
2 / 2 04 Aug 2008
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 - ...
2 / 2 04 Aug 2008
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 - ...
2 / 2 04 Aug 2008
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...
2 / 2 04 Aug 2008
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...
Setting Security Features of Outlook (IsTrusted)
Ken Slovak - [MVP - O...
2 / 2 31 Jul 2008
What are the settings on the Macro Security tab? On the Add-ins tab is the checkbox for Apply macro security settings to installed add-ins checked? -- 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 "Don" <someone@somewhere.net>...
Outlook 2003 Appointments -- drag and drop event using C#
Ken Slovak - [MVP - O...
6 / 6 29 Jul 2008
You always have to be more aware of scoping and possible garbage collection in managed code than in unmanaged code. You'd be surprised at how many problems are solved just by thinking about and following scoping rules. Good, I'm glad things are working now. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager,...
Out of Memory adding items to listbox from clipboard-pasted textbox
Ken Slovak - [MVP - O...
2 / 2 28 Jul 2008
Do you want the textbox and listbox to retain their contents from run to run? If not have you tried clearing both on the start of each run? Do you know on what line the error is occurring? -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech....
ACREDITE FUNCIONA!!!!!
JET72@BOL.COM.BR
1 / 1 27 Jul 2008
...
Folder Count
Michael Bauer [MVP - ...
2 / 2 24 Jul 2008
Can't you just set the folder to display the number of items? For that right click the folder, then choose properties. -- 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 Thu, 24 Jul 2008 09:01:56 -0700 (PDT) schrieb...
Outlook disables macros
Michael Bauer [MVP - ...
2 / 2 24 Jul 2008
Please click Help/About/Deactivated Items, and see if vba is listed there. -- 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 Thu, 24 Jul 2008 07:34:35 -0700 (PDT) schrieb michael: > Somehow Outlook disabled macros...
From Outlook to Excel using VBA
Ken Slovak - [MVP - O...
2 / 2 23 Jul 2008
Did you bother to look at the answer I posted a few hours ago? -- 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 "HBruno" <hbruno@pcebr.com.br> wrote in message news:eVZ2zcO7IHA.3652@TK2MSFTNGP04.phx.gbl... > Hi, > > I need to...
From Outlook to Excel using VBA
Ken Slovak - [MVP - O...
2 / 2 23 Jul 2008
There are examples of that at www.outlookcode.com. Search there for "Excel". -- 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 "HBruno" <heverardo@gmail.com> wrote in message news:ubYjaxM7IHA.2064@TK2MSFTNGP02.phx.gbl... > Hi, >...
All times are in (US) Eastern Daylight Time (GMT -4:00)