|
| Author |
Message |
mikev
Joined: 12 Aug 2007 Posts: 2
|
Posted: Wed Dec 06, 2006 2:26 pm Post subject: import dbx files into Outlook Express inbox using VB |
|
|
I have several hundred dbx files save to disk from outlook express.
How can I import them into the inbox using VB?
Thanks
Archived from group: microsoft>public>windows>inetexplorer>ie55>outlookexpress |
|
| Back to top |
|
 |
PA Bear
Joined: 12 Aug 2007 Posts: 123
|
|
| Back to top |
|
 |
mikev
Joined: 12 Aug 2007 Posts: 2
|
Posted: Wed Dec 06, 2006 4:16 pm Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
Thanks It was worth a try. I have seen all of the links you provided,
but they are mostly a manual process. I need to be able to automate
this. |
|
| Back to top |
|
 |
Jim Pickering
Joined: 12 Aug 2007 Posts: 23
|
Posted: Wed Dec 06, 2006 7:11 pm Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
Outlook Express, unlike Outlook is not easily programmable. There is very
little published about using an API for Outlook Express by MSDN with this
exception:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/outlookexpress/oe/oe_entry.asp
--
Jim Pickering, MVP/Windows Mail applications
Please reply ONLY to newsgroup.
wrote in message @n67g2000cwd.googlegroups.com...
> Thanks It was worth a try. I have seen all of the links you provided,
> but they are mostly a manual process. I need to be able to automate
> this.
> |
|
| Back to top |
|
 |
Ant
Joined: 12 Aug 2007 Posts: 2
|
Posted: Thu Dec 07, 2006 5:19 am Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
"Jim Pickering" wrote:
> Outlook Express, unlike Outlook is not easily programmable. There is very
> little published about using an API for Outlook Express by MSDN with this
> exception:
> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/outlookexpress/oe/oe_entry.asp
That would be nothing at all then. The link is given as the first hit
when a search for "API for Outlook Express" is done from the msdn home
page. However, when followed it leads to a 404. Very clever, MS.
I do wonder how the author of OE-Quoutefix managed to discover the API. |
|
| Back to top |
|
 |
Jim Pickering
Joined: 12 Aug 2007 Posts: 23
|
Posted: Wed Dec 06, 2006 11:50 pm Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
"Ant" wrote in message @TK2MSFTNGP04.phx.gbl...
>
> I do wonder how the author of OE-Quoutefix managed to discover the API.
>
The same way other programmers for Outlook Express do it. Trial and error.
--
Jim Pickering, MVP/Windows Mail applications
Please reply ONLY to newsgroup. |
|
| Back to top |
|
 |
Steve Cochran
Joined: 12 Aug 2007 Posts: 331
|
Posted: Tue Dec 12, 2006 11:20 am Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
I don't think OE Quotefix uses OE APIs.
steve
"Jim Pickering" wrote in message @microsoft.com...
> "Ant" wrote in message
> @TK2MSFTNGP04.phx.gbl...
>>
>> I do wonder how the author of OE-Quoutefix managed to discover the API.
>>
>
>
> The same way other programmers for Outlook Express do it. Trial and
> error.
> --
> Jim Pickering, MVP/Windows Mail applications
> Please reply ONLY to newsgroup.
>
> |
|
| Back to top |
|
 |
Steve Cochran
Joined: 12 Aug 2007 Posts: 331
|
Posted: Tue Dec 12, 2006 11:19 am Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
This will import individual dbx files, but not automatically.
www.oehelp.com/OEX/
You can manually import dbx files that are not corrupt using the method in
the last paragraph on OE on this page: www.oehelp.com/backup.aspx
steve
wrote in message @73g2000cwn.googlegroups.com...
>I have several hundred dbx files save to disk from outlook express.
> How can I import them into the inbox using VB?
>
> Thanks
> |
|
| Back to top |
|
 |
Steve Cochran
Joined: 12 Aug 2007 Posts: 331
|
Posted: Tue Dec 12, 2006 11:22 am Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
They changed the link and the name.
Here is the new link:
http://msdn2.microsoft.com/en-us/library/ms709546.aspx
The APIs there described work for OE, but you won't be able to import from
dbx files using any of them. I had to write my own routine that decoded
them to get it to work in OEX.
steve
"Ant" wrote in message @TK2MSFTNGP04.phx.gbl...
> "Jim Pickering" wrote:
>
>> Outlook Express, unlike Outlook is not easily programmable. There is
>> very
>> little published about using an API for Outlook Express by MSDN with this
>> exception:
>> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/outlookexpress/oe/oe_entry.asp
>
> That would be nothing at all then. The link is given as the first hit
> when a search for "API for Outlook Express" is done from the msdn home
> page. However, when followed it leads to a 404. Very clever, MS.
>
> I do wonder how the author of OE-Quoutefix managed to discover the API.
>
> |
|
| Back to top |
|
 |
Ant
Joined: 12 Aug 2007 Posts: 2
|
Posted: Fri Dec 15, 2006 6:20 am Post subject: Re: import dbx files into Outlook Express inbox using VB |
|
|
"Steve Cochran" wrote:
> They changed the link and the name.
> Here is the new link:
> http://msdn2.microsoft.com/en-us/library/ms709546.aspx
Thanks.
> The APIs there described work for OE,
Seems like there's more MS madness going on here. That section of msdn
is about Vista, yet pretty much all of the routines are deprecated or
obsolete. Why include them in new messaging API documentation when
they really ought to be in the historic section of msdn?
I had a look at some of the functions, and many state they were
introduced with OE6 and XP -- but they are already deprecated! What's
up with that? Presumably they won't work for for OE5 on Win2k.
I have Visual Studio 2003 (with C++) on XP on another machine, so I
searched for the include file msoeapi.h used in the examples. It's
not there!
> but you won't be able to import from
> dbx files using any of them. I had to write my own routine that decoded
> them to get it to work in OEX.
Yup.
|
|
| Back to top |
|
 |
|