473,405 Members | 2,294 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

MAPI

I am trying to use MAPI in a vb.net 2003 application. I find that I need the
Active X control MSMAPI32.ocx. If I install IIs, will this be included? I
read that VB6 includes this control but not sure if IIs does?
--
Dennis in Houston
Feb 1 '06 #1
6 3046
CMM
I don't think IIS installs this. Why would it? But even its installed, it
doesn't mean that you can develop against it.... license restrictions might
demand that you have VB6 installed to develop against it (even if you only
plan on using it from .NET).

I'm sure its at least a "redistrubutable" file... you may find it in MS's
old FTP site (ftp.microsoft.com) (they have a lot VB ocs's stuff in there)
or at InstallShield's MSI objects site.
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:41**********************************@microsof t.com...
I am trying to use MAPI in a vb.net 2003 application. I find that I need
the
Active X control MSMAPI32.ocx. If I install IIs, will this be included?
I
read that VB6 includes this control but not sure if IIs does?
--
Dennis in Houston

Feb 1 '06 #2
CMM
I think this is what you want.
http://activex.microsoft.com/controls/vb6/MSMAPI32.CAB
Not sure if you can "develop" against it though.
"CMM" <cm*@nospam.com> wrote in message
news:u5**************@TK2MSFTNGP15.phx.gbl...
I don't think IIS installs this. Why would it? But even its installed, it
doesn't mean that you can develop against it.... license restrictions might
demand that you have VB6 installed to develop against it (even if you only
plan on using it from .NET).

I'm sure its at least a "redistrubutable" file... you may find it in MS's
old FTP site (ftp.microsoft.com) (they have a lot VB ocs's stuff in there)
or at InstallShield's MSI objects site.
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:41**********************************@microsof t.com...
I am trying to use MAPI in a vb.net 2003 application. I find that I need
the
Active X control MSMAPI32.ocx. If I install IIs, will this be included?
I
read that VB6 includes this control but not sure if IIs does?
--
Dennis in Houston


Feb 1 '06 #3

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:41**********************************@microsof t.com...
I am trying to use MAPI in a vb.net 2003 application.


Why? MAPI is one of those things that Our Friends in Redmond keep
breaking with their Security "enhancements".

If you're trying to /send/ message, look at the System.Web.Mail
NameSpace.

If you're trying to read /incoming/ messages, that's a little more
complicated, but still quite do-able. I've used sockets to access mail
servers using the POP3 protocol; it's not /that/ fiddly.

HTH,
Phill W
{cr}{lf}.{cr}{lf}
Feb 1 '06 #4
Thanks. I'll give it a try. In some of the microsoft documentation, they
state that the control must either be on the target computer of the
applicaiton or can be redistributed. I am assuming that a license in VB7
will suffice to distribute. I'm sure someone in Microsoft will correct me if
I'm wrong.
--
Dennis in Houston
"CMM" wrote:
I think this is what you want.
http://activex.microsoft.com/controls/vb6/MSMAPI32.CAB
Not sure if you can "develop" against it though.
"CMM" <cm*@nospam.com> wrote in message
news:u5**************@TK2MSFTNGP15.phx.gbl...
I don't think IIS installs this. Why would it? But even its installed, it
doesn't mean that you can develop against it.... license restrictions might
demand that you have VB6 installed to develop against it (even if you only
plan on using it from .NET).

I'm sure its at least a "redistrubutable" file... you may find it in MS's
old FTP site (ftp.microsoft.com) (they have a lot VB ocs's stuff in there)
or at InstallShield's MSI objects site.
"Dennis" <De****@discussions.microsoft.com> wrote in message
news:41**********************************@microsof t.com...
I am trying to use MAPI in a vb.net 2003 application. I find that I need
the
Active X control MSMAPI32.ocx. If I install IIs, will this be included?
I
read that VB6 includes this control but not sure if IIs does?
--
Dennis in Houston



Feb 2 '06 #5
What I'm really looking for is something that will accomplish the following:

Start a user's default mail editor so the user can use his address for
selecting a "Send To"

Allow me to attach a file to the user's default mail editor or Display the
body text that is HTML coded

I tried the "MailTo" and it does start the user's default editor but doesn't
allow attaching files nor does it allow body text even with carriage returns
let alone HTML coded body text.

--
Dennis in Houston
"Phill W." wrote:

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:41**********************************@microsof t.com...
I am trying to use MAPI in a vb.net 2003 application.


Why? MAPI is one of those things that Our Friends in Redmond keep
breaking with their Security "enhancements".

If you're trying to /send/ message, look at the System.Web.Mail
NameSpace.

If you're trying to read /incoming/ messages, that's a little more
complicated, but still quite do-able. I've used sockets to access mail
servers using the POP3 protocol; it's not /that/ fiddly.

HTH,
Phill W
{cr}{lf}.{cr}{lf}

Feb 2 '06 #6
CMM
Yes, again, msmapi32.ocx is *exactly* what you want. However, I don't know
if some current E-mail apps conform to the mapi standard... for instance,
I'm not sure if Thunderbird does. I'd be (pleasantly) surprised if it does.

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:F6**********************************@microsof t.com...
What I'm really looking for is something that will accomplish the
following:

Start a user's default mail editor so the user can use his address for
selecting a "Send To"

Allow me to attach a file to the user's default mail editor or Display the
body text that is HTML coded

I tried the "MailTo" and it does start the user's default editor but
doesn't
allow attaching files nor does it allow body text even with carriage
returns
let alone HTML coded body text.

--
Dennis in Houston
"Phill W." wrote:

"Dennis" <De****@discussions.microsoft.com> wrote in message
news:41**********************************@microsof t.com...
> I am trying to use MAPI in a vb.net 2003 application.


Why? MAPI is one of those things that Our Friends in Redmond keep
breaking with their Security "enhancements".

If you're trying to /send/ message, look at the System.Web.Mail
NameSpace.

If you're trying to read /incoming/ messages, that's a little more
complicated, but still quite do-able. I've used sockets to access mail
servers using the POP3 protocol; it's not /that/ fiddly.

HTH,
Phill W
{cr}{lf}.{cr}{lf}

Feb 2 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Siegfried Heintze | last post by:
Does the Outlook API supersede MAPI? If I implement a SPAM filter using MAPI to automatically delete messages from the message store, will other clients like Eudora benefit? If I implement a...
4
by: Kurt | last post by:
Hi I am using CDO 1.21 from C# in order to iterate through the entries in a users outlook address book (as OOM was too slow). Basically I take the Name field from each "message" and insert it into...
5
by: eadams | last post by:
I've been tasked with writing an application in VB.Net that will manipulate messages in a user's Inbox. My Exchange admin prefers that I use MAPI; I don't really care, but I want this to be as...
7
by: Ottar | last post by:
I've made a program sorting incomming mail in public folder. The function runs every minute by using the form.timer event. In Access XP it runs for weeks, no problem. Access 2003 runs the same...
3
by: Siv | last post by:
Hi, A little while ago I wrote a small program that allowed the user to view products from a database. The database holds the details of the products which can be viewed via a form and...
4
by: Brian Hampson | last post by:
I recently upgraded to Outlook 2007 B2TR and have found that I can no longer code against MAPI.DLL It's gone :( Using C#, I used to get the MAPI session, and from that I could change the out of...
1
by: tomer.ha | last post by:
Hi there, I'd like to send emails from a Python program using Simple MAPI. I've tried this code: http://mail.python.org/pipermail/python-list/2004-December/298066.html and it works well with...
1
by: netLynx | last post by:
Hi, I am rewriting code from VB6 using MAPI into VB.NET I need to read an attachment off an email on an Exchange Server. In the old VB6 (not written by me) they restrict the Messages.type to...
3
by: GayathriP | last post by:
This article discusses about how can we access the inbox through MAPI using C# .NET. It also discusses about how to store the attachment in the local directory, how to create a folder in the inbox ...
15
by: squrel | last post by:
Hi everyone.. i need ur help once more time.... i have a form called reminder..in tht form i have: txtid, txtcaseid, txtreminder, cmbremindby(system or user), txtremindto, dtpreminddt,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.