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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 25864 - 25893 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25864
Is it possible to spawn another application from an Outlook form? I would like to bring up an IE session with a specified web page when a user clicks a...
Winterton, Robert K
winterton
Offline Send Email
Nov 2, 2005
7:11 pm
25865
I have the following code and have run into the Error no read permissions on the database either when trying to executethe SQL statement or trying to access...
JHundley
jjhundley2000
Offline Send Email
Nov 2, 2005
9:06 pm
25866
Quick review, I don't see where you are closing the database connection. My guess is that Access is set to only allow a single connection and is locking the...
Eric Woodford
ericwoodford
Offline Send Email
Nov 2, 2005
9:14 pm
25867
http://support.microsoft.com/Default.aspx?kbid=206719...
Eric Woodford
ericwoodford
Offline Send Email
Nov 2, 2005
9:17 pm
25868
I continued to debug after sending the message went into access and set ADMIN to have full access to the Table .... duh when I created the table I not only did...
JHundley
jjhundley2000
Offline Send Email
Nov 2, 2005
9:20 pm
25869
1. Are you sure the target db is closed? You cannot open it via DAO if any other user has it open. Check your Task Manager Processes to be sure no Access...
Kathryn Riss
kriss@...
Send Email
Nov 2, 2005
9:26 pm
25870
I have noticed that all the questions posted here have to do with using VB. I am interested in writing a plugin using c++. Does anybody have experience doing...
Craig
css29
Offline Send Email
Nov 3, 2005
1:21 am
25871
You may want to check out http://www.bpsmicro.com/Files/MsgDump2000.htm . It's a sample, a bit dated now but still pretty useful (I hope) in C++. ...
Brad [VE3BSM]
bpsmicro
Offline Send Email
Nov 3, 2005
1:39 am
25872
Did you look at MsgDump2000 at http://www.bpsmicro.com/ ? --Mark ... From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Craig ...
Mark Wilson
markwilsonso...
Offline Send Email
Nov 3, 2005
1:40 am
25873
How would I go about adding a task using Vba without have to open the Task form and click save? Also how would I go about deleting all tasks using vba?...
JHundley
jjhundley2000
Offline Send Email
Nov 3, 2005
5:50 pm
25874
I am looking for a way to capture the "Assign Task" event, and the actual assignment to an individual, of a task form. My goal is to capture an "Assigned...
mcgilvraymark
Offline Send Email
Nov 4, 2005
7:29 pm
25875
When trying to create an email from my Delphi Application (D2005) I get an EOLESysError : Incorrect function when ttrying to Display the MailItem like this: ...
Alfred Vink
alf_at_delphi
Offline Send Email
Nov 5, 2005
4:48 pm
25876
Hi, When creating and sending appointments by means of my Delphi Application, sometimes the Subject is preceded by the start and endtime of the appointment. I...
Alfred Vink
alf_at_delphi
Offline Send Email
Nov 5, 2005
4:49 pm
25877
You mean in the Day/Week/Month view? The Subject itself doesn't change. What you're seeing is display behavior that's built-into Outlook and depends on the...
Sue Mosher
sue_mosher_g...
Offline Send Email
Nov 5, 2005
6:51 pm
25878
Delphi bug - it always expects that a COM method returns S_OK (=0). In this case Outlook returns a non-critical (>0) error that can be safely ignored. Another...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 5, 2005
9:06 pm
25879
... depends ... Yes, now I see, couldn't find that setting at first, but now I see that if times don't fall into a particualr bracket Outlook will the times...
Alfred Vink
alf_at_delphi
Offline Send Email
Nov 6, 2005
7:54 pm
25880
... Yes, should have done that in the first place, but it used to work OK, can't figure out what I've changed to make it suddenly popup with the fault.. ... ...
Alfred Vink
alf_at_delphi
Offline Send Email
Nov 6, 2005
8:03 pm
25881
Hi everyone, This error appears in my custom form: "The display format is not valid for this field type" How can I solve this problem? Denis....
Denis Sergeeff
dsergeeff
Offline Send Email
Nov 6, 2005
8:26 pm
25882
AFAIK, no....
Sue Mosher
sue_mosher_g...
Offline Send Email
Nov 6, 2005
9:21 pm
25883
See below ... From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Alfred Vink Sent: Sunday, November 06, 2005 1:02 PM To:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 6, 2005
10:33 pm
25884
Hi I have an Addin that loops through all the messages in a Mail Folder checking for a custom X-Header, and performs tasks on each mail it finds with this...
holenyohead
Offline Send Email
Nov 7, 2005
11:43 am
25885
You will need to call GetIDsFromNames once before looping through the messages; it will return the same value for all messages in the store - see ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 7, 2005
3:27 pm
25886
Hi , I am trying to retrieve the mail sent by a guy having a particular subject using VBScript .QTP is no good at it . I am facing 2 Problems 1) Outlook...
pratik_dam
Offline Send Email
Nov 7, 2005
6:24 pm
25887
1) The password parameter is a legacy of MS Mail, IIRC, and has no relevance to Outlook. Whether the user has to enter a password at all will depend on the...
Sue Mosher
sue_mosher_g...
Offline Send Email
Nov 7, 2005
7:11 pm
25888
I have the following code to Delete all of the Tasks in the tasks list but when I run it the code only deletes some of the tasks. Does anyone have any ideas? ...
JHundley
jjhundley2000
Offline Send Email
Nov 7, 2005
8:49 pm
25889
Never move or delete inside a For Each loop, which resets the index on each pass. You can use a countdown loop instead: count = colItems.Count For i = count to...
Sue Mosher
sue_mosher_g...
Offline Send Email
Nov 7, 2005
8:59 pm
25890
Many thanks Dmitry. Let me try it out. I presume I still need to find a message with the custom X-header to run my initial GetIDsFromNames? Or will any mail in...
holenyohead
Offline Send Email
Nov 7, 2005
11:25 pm
25891
No, any message would do - you just use it to figure out the named prop tag, the property itself does not have to exist in that particular message. ... From:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 7, 2005
11:31 pm
25892
I am having issues with an auto-accept script on Exchange 5.5. The script is running, but fails on one or two rooms. Checking Performance Monitor on the server...
Eric Woodford
ericwoodford
Offline Send Email
Nov 7, 2005
11:58 pm
25893
When somebody assigns you a Task in Outlook, and you check it as Complete, Outlook sends out an IPM.TaskRequest.Update "note" to the assigner, and also a...
Brad Smith
bpsmicro
Offline Send Email
Nov 8, 2005
1:12 pm
Messages 25864 - 25893 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