A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Redemption Error



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 25th 08, 04:15 PM posted to microsoft.public.outlook.program_vba
Garnjost, Kurt
external usenet poster
 
Posts: 2
Default Redemption Error

I have a program using Redemption RDO to access .msg files. Generally, it
works quite well, but for a few files I get an error:

-2147352567 File [file name/path] does not exist., (failed on
"GetMessageFromMsgFile")

The trouble is that the file does exist and I can open it in Outlook just
fine. I can see nothing in OutlookSpy that is strange. The only odd thing
I have noted is that the modified date for the not visible in Windows
Explorer for the files and shows as "December 30, 1899 00:00:00" in the
properties dialog.

Does anyone have any idea what is wrong with these .msg files? Is it a
Redemption problem (I doubt it, but I don't really know)? Any suggestions
on how to get past this would also be appreciated. I have set up error
handling that records the problem and moves on, but would prefer to be able
to process the files.

Kurt Garnjost

Ads
  #2  
Old February 26th 08, 10:58 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Redemption Error

How was the MSG file created?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Garnjost, Kurt" wrote in message
...
I have a program using Redemption RDO to access .msg files. Generally, it
works quite well, but for a few files I get an error:

-2147352567 File [file name/path] does not exist., (failed on
"GetMessageFromMsgFile")

The trouble is that the file does exist and I can open it in Outlook just
fine. I can see nothing in OutlookSpy that is strange. The only odd
thing
I have noted is that the modified date for the not visible in Windows
Explorer for the files and shows as "December 30, 1899 00:00:00" in the
properties dialog.

Does anyone have any idea what is wrong with these .msg files? Is it a
Redemption problem (I doubt it, but I don't really know)? Any suggestions
on how to get past this would also be appreciated. I have set up error
handling that records the problem and moves on, but would prefer to be
able
to process the files.

Kurt Garnjost



  #3  
Old February 26th 08, 11:52 PM posted to microsoft.public.outlook.program_vba
Garnjost, Kurt
external usenet poster
 
Posts: 2
Default Redemption Error

It was created with a product called Discovery Attender, which creates a
database of e-mail information from PST files and then will create MSG files
out of the PSTs on request. (Some selection can be done, if desired before
the MSG creation.) (I know I could generate all this myself with
Redemption, but generally Discovery Attender works well and saves me a lot
of coding.)

There are about 50 files like this out of some 170,000 MSG files all created
from PSTs the same way. Only the 50 have this problem.

I have written some code that catches these problem files and skips them
with a list generated, but I trying to understand why Redemption cannot open
them.

Kurt Garnjost


On 2/26/2008 17:58, in article ,
"Dmitry Streblechenko" wrote:

How was the MSG file created?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Garnjost, Kurt" wrote in message
...
I have a program using Redemption RDO to access .msg files. Generally, it
works quite well, but for a few files I get an error:

-2147352567 File [file name/path] does not exist., (failed on
"GetMessageFromMsgFile")

The trouble is that the file does exist and I can open it in Outlook just
fine. I can see nothing in OutlookSpy that is strange. The only odd
thing
I have noted is that the modified date for the not visible in Windows
Explorer for the files and shows as "December 30, 1899 00:00:00" in the
properties dialog.

Does anyone have any idea what is wrong with these .msg files? Is it a
Redemption problem (I doubt it, but I don't really know)? Any suggestions
on how to get past this would also be appreciated. I have set up error
handling that records the problem and moves on, but would prefer to be
able
to process the files.

Kurt Garnjost





  #4  
Old February 27th 08, 10:43 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Redemption Error

Redemption checks whether the file exists by retrieving the last write time
on the file (this way it does not have to be opened). The function defaults
to 0 (which is December 30, 1899 00:00:00) if the file does not exist...
Send me an e-mail so I can send you a version with a fix.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Garnjost, Kurt" wrote in message
...
It was created with a product called Discovery Attender, which creates a
database of e-mail information from PST files and then will create MSG
files
out of the PSTs on request. (Some selection can be done, if desired
before
the MSG creation.) (I know I could generate all this myself with
Redemption, but generally Discovery Attender works well and saves me a lot
of coding.)

There are about 50 files like this out of some 170,000 MSG files all
created
from PSTs the same way. Only the 50 have this problem.

I have written some code that catches these problem files and skips them
with a list generated, but I trying to understand why Redemption cannot
open
them.

Kurt Garnjost


On 2/26/2008 17:58, in article ,
"Dmitry Streblechenko" wrote:

How was the MSG file created?

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Garnjost, Kurt" wrote in message
...
I have a program using Redemption RDO to access .msg files. Generally,
it
works quite well, but for a few files I get an error:

-2147352567 File [file name/path] does not exist., (failed on
"GetMessageFromMsgFile")

The trouble is that the file does exist and I can open it in Outlook
just
fine. I can see nothing in OutlookSpy that is strange. The only odd
thing
I have noted is that the modified date for the not visible in Windows
Explorer for the files and shows as "December 30, 1899 00:00:00" in the
properties dialog.

Does anyone have any idea what is wrong with these .msg files? Is it a
Redemption problem (I doubt it, but I don't really know)? Any
suggestions
on how to get past this would also be appreciated. I have set up error
handling that records the problem and moves on, but would prefer to be
able
to process the files.

Kurt Garnjost







 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Redemption insert text - Run-time error '-2147467259 (80004005)' Unspecified Error JW Outlook and VBA 16 December 22nd 07 10:26 PM
Error 0 with Redemption...huh? Dewey Add-ins for Outlook 2 October 24th 07 12:19 AM
Redemption - multiple emails for cc - error: could not resolve ema SAm Outlook and VBA 2 August 27th 07 07:40 PM
Outlook Redemption problem: Retrieving the COM class factory for component with CLSID {...} failed due to the following error: 80040154. [email protected] Add-ins for Outlook 1 September 18th 06 09:44 AM
Redemption+CBuilder: RDOSession.Logon MAPILogonEx-Error [email protected] Add-ins for Outlook 2 September 1st 06 08:32 AM


All times are GMT +1. The time now is 11:18 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.