Search the web
Sign In
New User? Sign Up
outlook-dev · Outlook Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 27753 - 27782 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27753
If anyone can clarify if I've lost my mind, it would be much appreciated. I have a folder where all emails on a certain subject are kept, I scan all through...
Chris
chris.010101
Offline Send Email
Dec 5, 2008
4:51 pm
27754
Importing a Form Region That Is Designed in Outlook We have tried to develop a new Outlook FormRegion build by VisualStudio 2008 - with the use of VSTO 3. The...
terje@...
kristiansen_...
Offline Send Email
Dec 9, 2008
2:12 pm
27755
If we remove or comment out all the buttons in the formregion it seems to work. e.g 'Me.addDependentTask = Me.GetFormRegionControl(Of...
terje@...
kristiansen_...
Offline Send Email
Dec 9, 2008
2:19 pm
27756
Eg. Me.olkTextBox1 = Me.GetFormRegionControl(Of Microsoft.Office.Interop.Outlook.OlkTextBox)("OlkTextBox1") Me.olkLabel1 = Me.GetFormRegionControl(Of...
terje@...
kristiansen_...
Offline Send Email
Dec 9, 2008
2:20 pm
27757
Is the MS Forms PIA installed from the Office CD? See http://forums.microsoft.com/msdn/showpost.aspx?postid=2198298 ...
Ken Slovak
kenslovak2000
Offline Send Email
Dec 9, 2008
2:52 pm
27758
Thanks - I look into it It can also be related to this - (but I believed VS used framework 3.5) http://support.microsoft.com/kb/926997 FIX: Error message when...
terje@...
kristiansen_...
Offline Send Email
Dec 9, 2008
2:58 pm
27759
Hi again The problem seems to be how the controls are initialized From the xx.Designer.vb <System.Diagnostics.DebuggerStepThrough()> Protected Overrides Sub ...
Terje Kristiansen
terje252003
Offline Send Email
Dec 9, 2008
10:23 pm
27760
I hired someone to write a program for my clients which extracts certain information from emails in Outlook. The program is written in VB6; the interface is...
sz.white
Offline Send Email
Dec 10, 2008
2:22 pm
27761
When you say nothing is working if you just add a message box to your Click event handler, what exactly isn't working? Any exceptions? Does the message box...
Ken Slovak
kenslovak2000
Offline Send Email
Dec 10, 2008
2:26 pm
27762
In general no code changes are required for code that worked in Outlook 2003 to run on Outlook 2007. I've made very few changes to any of my older code, mostly...
Ken Slovak
kenslovak2000
Offline Send Email
Dec 10, 2008
2:32 pm
27763
I'm just playing around with form regions on Outlook 2007. Has anyone got these working with a VB6 COM add-in? I can't work out how to access the form region's...
Charles Sinclair
tasklineuk
Offline Send Email
Dec 15, 2008
10:35 am
27764
Form regions definitely work with VB6. You can see how this sort of thing works from a VB6 project template I have posted at...
Ken Slovak
kenslovak2000
Offline Send Email
Dec 15, 2008
1:44 pm
27765
Thank you Ken, that was enormously helpful. If you mentioned that Form Regions can be accessed via a VB6 COM Add-In in your Outlook 2007 Programming book, then...
Charles Sinclair
tasklineuk
Offline Send Email
Dec 16, 2008
4:26 pm
27766
The book concentrated on .NET code since that's what my publisher wanted (in addition to lots of VBA examples). Everything that can be accessed using .NET code...
Ken Slovak
kenslovak2000
Offline Send Email
Dec 16, 2008
4:33 pm
27767
Outlook died when tring to set the property value of "Body" or "HTMLBody" with the "MailItem" object hi, all, At first, i though the "MailItem" object was...
hireats-domaindrivend...
ats_stalone
Offline Send Email
Dec 26, 2008
6:18 pm
27768
Firstly, show the relevant snippets of your code. Secondly, do not use Outlook objects on the secondary threads. From: outlook-dev@yahoogroups.com...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Dec 28, 2008
8:28 pm
27769
Thanks for ur suggestion. Firstly, I have no idea not to use outlook object on the secondary threads, just because i need to handle hot key event, in other...
hireats-domaindrivend...
ats_stalone
Offline Send Email
Dec 29, 2008
1:30 pm
27770
You can use as many threads as your application needs, except that you cannot use the Outlook object model on any thread other than the main one. If a...
Ken Slovak
kenslovak2000
Offline Send Email
Dec 29, 2008
1:35 pm
27771
Hallo This is a question about how to "clear" a field after the outlook appointment Item Is closed. See: ...
Terje Kristiansen
terje252003
Offline Send Email
Jan 14, 2009
11:33 am
27772
Hello, Thanks in advance for your support. I tried using this code found elsewhere on these group pages and a similar one found at OutlookCode.com Can you tell...
mcvaris
Offline Send Email
Jan 14, 2009
2:05 pm
27773
Where is this Web code running? Outlook code requires that it be run on the client machine since that's where Outlook is installed and where at least one...
Ken Slovak
kenslovak2000
Offline Send Email
Jan 14, 2009
2:21 pm
27774
1. You must close the Inspector to release the underlying item. RDO doesn't really have any UI related functionality since it's an Extended MAPI wrapper. 2....
Ken Slovak
kenslovak2000
Offline Send Email
Jan 14, 2009
2:40 pm
27775
Thanks for your answer. But….. In an outlook form in the Item_Close If the Close metod was (olDiscard) I called this code: (Clean the field...
Terje Kristiansen
terje252003
Offline Send Email
Jan 14, 2009
3:36 pm
27776
I said it was possible. The Close event doesn't tell you if the item is closed using the olDiscard setting, in a form or in an addin, BTW. Try Dim RdoSession...
Ken Slovak
kenslovak2000
Offline Send Email
Jan 14, 2009
3:54 pm
27777
Thank you . Yes we have rewritten the Close event with a possibility to answer Yes/No to Save or Not. I will try your example. Best from terje Fra:...
Terje Kristiansen
terje252003
Offline Send Email
Jan 14, 2009
4:03 pm
27778
Also keep in mind that if you are mixing Outlook Object Model and Redemption, SafeAppontmentItme would be a better choice than RDOAppoimtmentItem: all...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 14, 2009
4:38 pm
27779
Thanks Be aware of that this function only should be used it “Item_Close” event = olDiscard. So I think I have to access the Item after/when it is closed...
Terje Kristiansen
terje252003
Offline Send Email
Jan 14, 2009
5:40 pm
27780
When I try to use RDO – next time I try to open the item (if I do it directly as the first item after closing it) everything Is OK until – I try to save: ...
Terje Kristiansen
terje252003
Offline Send Email
Jan 14, 2009
5:45 pm
27781
And – If I use Redemption.RDO to save – no error message– the error comes when I use standard “Microsoft.save”. terje Fra:...
Terje Kristiansen
terje252003
Offline Send Email
Jan 14, 2009
5:48 pm
27782
This is hardly surprising – both Outlook and RDO open the message independently, the first call to Save will be successful, the second caller however will...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 14, 2009
5:57 pm
Messages 27753 - 27782 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help