473,399 Members | 3,302 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,399 software developers and data experts.

Outlook block

Hi

Is it possible to write vb.net code around outlook 2000 dlls and then use
the code on ol2002 machines to send emails and bypass ol 2002 email block?

Thanks

Regards
Nov 20 '05 #1
9 2177
Hello,

yes it is, you can write an Outlook Add-In and use the Redemption from
www.dimastr.com
If Outlook is in a Exchange environment, you could use the Administrative
Forms to enabled the dll to bypass the security block.

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi

Is it possible to write vb.net code around outlook 2000 dlls and then use
the code on ol2002 machines to send emails and bypass ol 2002 email block?

Thanks

Regards

Nov 20 '05 #2
Thanks Helmut. BTW, a copy of my redemption project should be in your inbox.
Was too large to post here.

Thanks again.

Regards
"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:Ob**************@TK2MSFTNGP09.phx.gbl...
Hello,

yes it is, you can write an Outlook Add-In and use the Redemption from
www.dimastr.com
If Outlook is in a Exchange environment, you could use the Administrative
Forms to enabled the dll to bypass the security block.

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi

Is it possible to write vb.net code around outlook 2000 dlls and then use the code on ol2002 machines to send emails and bypass ol 2002 email block?
Thanks

Regards


Nov 20 '05 #3
please send it to [flash at x4u dot de]
i'm not at work now...

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]

"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:O3****************@TK2MSFTNGP12.phx.gbl...
Thanks Helmut. BTW, a copy of my redemption project should be in your inbox. Was too large to post here.

Thanks again.

Regards
"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:Ob**************@TK2MSFTNGP09.phx.gbl...
Hello,

yes it is, you can write an Outlook Add-In and use the Redemption from
www.dimastr.com
If Outlook is in a Exchange environment, you could use the Administrative
Forms to enabled the dll to bypass the security block.

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi

Is it possible to write vb.net code around outlook 2000 dlls and then

use the code on ol2002 machines to send emails and bypass ol 2002 email block?
Thanks

Regards



Nov 20 '05 #4
Done, twice. Also received the two test messages.

Regards

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
please send it to [flash at x4u dot de]
i'm not at work now...

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]

"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:O3****************@TK2MSFTNGP12.phx.gbl...
Thanks Helmut. BTW, a copy of my redemption project should be in your

inbox.
Was too large to post here.

Thanks again.

Regards
"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:Ob**************@TK2MSFTNGP09.phx.gbl...
Hello,

yes it is, you can write an Outlook Add-In and use the Redemption from
www.dimastr.com
If Outlook is in a Exchange environment, you could use the Administrative Forms to enabled the dll to bypass the security block.

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:%2****************@TK2MSFTNGP12.phx.gbl...
> Hi
>
> Is it possible to write vb.net code around outlook 2000 dlls and
then use
> the code on ol2002 machines to send emails and bypass ol 2002 email

block?
>
> Thanks
>
> Regards
>
>



Nov 20 '05 #5
So for the Newsgroup:

It worked on my system.
I added new lines of code for save the item before send.
When i call SafeItem.Send, the Mail is in my Draftsfolder until i click
send/receive.
so I added a line to start synchronizing.

PLease test it first with a already running Outlook instance,
so you can see if there is a Problem with objNS.Logon....

here goes the code:

Dim objApp As Outlook.Application

Dim objNS As Outlook.NameSpace

Dim objSafeItem As Redemption.SafeMailItem

Dim objMailItem As Outlook.MailItem

objApp = New Outlook.Application

objNS = objApp.GetNamespace("MAPI")

objNS.Logon("Outlook", "", False, False)

objMailItem = objApp.CreateItem(OlItemType.olMailItem)

objSafeItem = New SafeMailItem

objSafeItem.Item = objMailItem

objSafeItem.Recipients.Add(in**@xxxx.xx)

objMailItem.Subject = "TestMessage"

objSafeItem.Body = "This message is sent from Redemption...."

'the new save

objMailItem.Save()

objMailItem.To = in**@xxxx.xx

objSafeItem.Send()

objNS.SyncObjects.Item(1).Start()

objSafeItem = Nothing

objMailItem = Nothing

objNS.Logoff()

objNS = Nothing

objApp = Nothing

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:uS**************@TK2MSFTNGP10.phx.gbl...
Done, twice. Also received the two test messages.

Regards

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
please send it to [flash at x4u dot de]
i'm not at work now...

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]

"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:O3****************@TK2MSFTNGP12.phx.gbl...
Thanks Helmut. BTW, a copy of my redemption project should be in your

inbox.
Was too large to post here.

Thanks again.

Regards
"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:Ob**************@TK2MSFTNGP09.phx.gbl...
> Hello,
>
> yes it is, you can write an Outlook Add-In and use the Redemption from > www.dimastr.com
> If Outlook is in a Exchange environment, you could use the

Administrative
> Forms to enabled the dll to bypass the security block.
>
> --
> regards,
> Helmut Obertanner
> DATALOG Software AG
> http://www.datalog.de
> [obertanner at datalog dot de]
>
>
> "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> news:%2****************@TK2MSFTNGP12.phx.gbl...
> > Hi
> >
> > Is it possible to write vb.net code around outlook 2000 dlls and then use
> > the code on ol2002 machines to send emails and bypass ol 2002 email block?
> >
> > Thanks
> >
> > Regards
> >
> >
>
>



Nov 20 '05 #6
Hi

I have tried it with outlook running. No matter what I do, the mail that is
saved in draft has a blank "To" field.

Thanks

Regards
"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
So for the Newsgroup:

It worked on my system.
I added new lines of code for save the item before send.
When i call SafeItem.Send, the Mail is in my Draftsfolder until i click
send/receive.
so I added a line to start synchronizing.

PLease test it first with a already running Outlook instance,
so you can see if there is a Problem with objNS.Logon....

here goes the code:

Dim objApp As Outlook.Application

Dim objNS As Outlook.NameSpace

Dim objSafeItem As Redemption.SafeMailItem

Dim objMailItem As Outlook.MailItem

objApp = New Outlook.Application

objNS = objApp.GetNamespace("MAPI")

objNS.Logon("Outlook", "", False, False)

objMailItem = objApp.CreateItem(OlItemType.olMailItem)

objSafeItem = New SafeMailItem

objSafeItem.Item = objMailItem

objSafeItem.Recipients.Add(in**@xxxx.xx)

objMailItem.Subject = "TestMessage"

objSafeItem.Body = "This message is sent from Redemption...."

'the new save

objMailItem.Save()

objMailItem.To = in**@xxxx.xx

objSafeItem.Send()

objNS.SyncObjects.Item(1).Start()

objSafeItem = Nothing

objMailItem = Nothing

objNS.Logoff()

objNS = Nothing

objApp = Nothing

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:uS**************@TK2MSFTNGP10.phx.gbl...
Done, twice. Also received the two test messages.

Regards

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
please send it to [flash at x4u dot de]
i'm not at work now...

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]

"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:O3****************@TK2MSFTNGP12.phx.gbl...
> Thanks Helmut. BTW, a copy of my redemption project should be in your inbox.
> Was too large to post here.
>
> Thanks again.
>
> Regards
>
>
> "Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
> news:Ob**************@TK2MSFTNGP09.phx.gbl...
> > Hello,
> >
> > yes it is, you can write an Outlook Add-In and use the Redemption from > > www.dimastr.com
> > If Outlook is in a Exchange environment, you could use the
Administrative
> > Forms to enabled the dll to bypass the security block.
> >
> > --
> > regards,
> > Helmut Obertanner
> > DATALOG Software AG
> > http://www.datalog.de
> > [obertanner at datalog dot de]
> >
> >
> > "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> > news:%2****************@TK2MSFTNGP12.phx.gbl...
> > > Hi
> > >
> > > Is it possible to write vb.net code around outlook 2000 dlls and

then
> use
> > > the code on ol2002 machines to send emails and bypass ol 2002 email > block?
> > >
> > > Thanks
> > >
> > > Regards
> > >
> > >
> >
> >
>
>



Nov 20 '05 #7
Hi

OK, now the "To" field has a value and the message is saved in draft but I
am getting this error on send;

Unhandled Exception: System.Runtime.InteropServices.COMException
(0x8000FFFF): Catastrophic failure
at Redemption.SafeMailItemClass.Send()

The code is as follows;

Dim objApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objSafeItem As Redemption.SafeMailItem
Dim objMailItem As Outlook.MailItem
objApp = New Outlook.Application
objNS = objApp.GetNamespace("MAPI")
objNS.Logon("Outlook", "", False, False)
objMailItem = objApp.CreateItem(OlItemType.olMailItem)
objSafeItem = New SafeMailItem
objSafeItem.Item = objMailItem
objSafeItem.Recipients.Add(te**@mydomain.com)
objMailItem.Subject = "TestMessage"
objSafeItem.Body = "This message is sent from Redemption...."
objMailItem.To = "te**@mydomain.com"
objMailItem.Save()
objSafeItem.Recipients.ResolveAll()

objSafeItem.Send() '<=== Errror here

objNS.SyncObjects.Item(1).Start()
objSafeItem = Nothing
objMailItem = Nothing
objNS.Logoff()
objNS = Nothing
objApp = Nothing

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
So for the Newsgroup:

It worked on my system.
I added new lines of code for save the item before send.
When i call SafeItem.Send, the Mail is in my Draftsfolder until i click
send/receive.
so I added a line to start synchronizing.

PLease test it first with a already running Outlook instance,
so you can see if there is a Problem with objNS.Logon....

here goes the code:

Dim objApp As Outlook.Application

Dim objNS As Outlook.NameSpace

Dim objSafeItem As Redemption.SafeMailItem

Dim objMailItem As Outlook.MailItem

objApp = New Outlook.Application

objNS = objApp.GetNamespace("MAPI")

objNS.Logon("Outlook", "", False, False)

objMailItem = objApp.CreateItem(OlItemType.olMailItem)

objSafeItem = New SafeMailItem

objSafeItem.Item = objMailItem

objSafeItem.Recipients.Add(in**@xxxx.xx)

objMailItem.Subject = "TestMessage"

objSafeItem.Body = "This message is sent from Redemption...."

'the new save

objMailItem.Save()

objMailItem.To = in**@xxxx.xx

objSafeItem.Send()

objNS.SyncObjects.Item(1).Start()

objSafeItem = Nothing

objMailItem = Nothing

objNS.Logoff()

objNS = Nothing

objApp = Nothing

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:uS**************@TK2MSFTNGP10.phx.gbl...
Done, twice. Also received the two test messages.

Regards

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
please send it to [flash at x4u dot de]
i'm not at work now...

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]

"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:O3****************@TK2MSFTNGP12.phx.gbl...
> Thanks Helmut. BTW, a copy of my redemption project should be in your inbox.
> Was too large to post here.
>
> Thanks again.
>
> Regards
>
>
> "Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
> news:Ob**************@TK2MSFTNGP09.phx.gbl...
> > Hello,
> >
> > yes it is, you can write an Outlook Add-In and use the Redemption from > > www.dimastr.com
> > If Outlook is in a Exchange environment, you could use the
Administrative
> > Forms to enabled the dll to bypass the security block.
> >
> > --
> > regards,
> > Helmut Obertanner
> > DATALOG Software AG
> > http://www.datalog.de
> > [obertanner at datalog dot de]
> >
> >
> > "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> > news:%2****************@TK2MSFTNGP12.phx.gbl...
> > > Hi
> > >
> > > Is it possible to write vb.net code around outlook 2000 dlls and

then
> use
> > > the code on ol2002 machines to send emails and bypass ol 2002 email > block?
> > >
> > > Thanks
> > >
> > > Regards
> > >
> > >
> >
> >
>
>



Nov 20 '05 #8
Do you have third-Party Tools like Norton or e.g. that could block this
behavior ?
Have you asked Mr. Strebleckenko if he knows that problem ?
For Test try to disable the anti-virus scanner.
Also try to install a fresh WXP and OlXP and try it here to determine if
there's a problem with your installation.

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:ey**************@TK2MSFTNGP09.phx.gbl...
Hi

OK, now the "To" field has a value and the message is saved in draft but I
am getting this error on send;

Unhandled Exception: System.Runtime.InteropServices.COMException
(0x8000FFFF): Catastrophic failure
at Redemption.SafeMailItemClass.Send()

The code is as follows;

Dim objApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objSafeItem As Redemption.SafeMailItem
Dim objMailItem As Outlook.MailItem
objApp = New Outlook.Application
objNS = objApp.GetNamespace("MAPI")
objNS.Logon("Outlook", "", False, False)
objMailItem = objApp.CreateItem(OlItemType.olMailItem)
objSafeItem = New SafeMailItem
objSafeItem.Item = objMailItem
objSafeItem.Recipients.Add(te**@mydomain.com)
objMailItem.Subject = "TestMessage"
objSafeItem.Body = "This message is sent from Redemption...."
objMailItem.To = "te**@mydomain.com"
objMailItem.Save()
objSafeItem.Recipients.ResolveAll()

objSafeItem.Send() '<=== Errror here

objNS.SyncObjects.Item(1).Start()
objSafeItem = Nothing
objMailItem = Nothing
objNS.Logoff()
objNS = Nothing
objApp = Nothing

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
So for the Newsgroup:

It worked on my system.
I added new lines of code for save the item before send.
When i call SafeItem.Send, the Mail is in my Draftsfolder until i click
send/receive.
so I added a line to start synchronizing.

PLease test it first with a already running Outlook instance,
so you can see if there is a Problem with objNS.Logon....

here goes the code:

Dim objApp As Outlook.Application

Dim objNS As Outlook.NameSpace

Dim objSafeItem As Redemption.SafeMailItem

Dim objMailItem As Outlook.MailItem

objApp = New Outlook.Application

objNS = objApp.GetNamespace("MAPI")

objNS.Logon("Outlook", "", False, False)

objMailItem = objApp.CreateItem(OlItemType.olMailItem)

objSafeItem = New SafeMailItem

objSafeItem.Item = objMailItem

objSafeItem.Recipients.Add(in**@xxxx.xx)

objMailItem.Subject = "TestMessage"

objSafeItem.Body = "This message is sent from Redemption...."

'the new save

objMailItem.Save()

objMailItem.To = in**@xxxx.xx

objSafeItem.Send()

objNS.SyncObjects.Item(1).Start()

objSafeItem = Nothing

objMailItem = Nothing

objNS.Logoff()

objNS = Nothing

objApp = Nothing

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:uS**************@TK2MSFTNGP10.phx.gbl...
Done, twice. Also received the two test messages.

Regards

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:un**************@tk2msftngp13.phx.gbl...
> please send it to [flash at x4u dot de]
> i'm not at work now...
>
> --
> regards,
> Helmut Obertanner
> DATALOG Software AG
> http://www.datalog.de
> [obertanner at datalog dot de]
>
> "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> news:O3****************@TK2MSFTNGP12.phx.gbl...
> > Thanks Helmut. BTW, a copy of my redemption project should be in your > inbox.
> > Was too large to post here.
> >
> > Thanks again.
> >
> > Regards
> >
> >
> > "Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
> > news:Ob**************@TK2MSFTNGP09.phx.gbl...
> > > Hello,
> > >
> > > yes it is, you can write an Outlook Add-In and use the Redemption
from
> > > www.dimastr.com
> > > If Outlook is in a Exchange environment, you could use the
> Administrative
> > > Forms to enabled the dll to bypass the security block.
> > >
> > > --
> > > regards,
> > > Helmut Obertanner
> > > DATALOG Software AG
> > > http://www.datalog.de
> > > [obertanner at datalog dot de]
> > >
> > >
> > > "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> > > news:%2****************@TK2MSFTNGP12.phx.gbl...
> > > > Hi
> > > >
> > > > Is it possible to write vb.net code around outlook 2000 dlls

and then
> > use
> > > > the code on ol2002 machines to send emails and bypass ol 2002

email
> > block?
> > > >
> > > > Thanks
> > > >
> > > > Regards
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 20 '05 #9
Yes, he is looking into it as well.

Will do the reinstall.

Thanks

Regards
"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:eh**************@tk2msftngp13.phx.gbl...
Do you have third-Party Tools like Norton or e.g. that could block this
behavior ?
Have you asked Mr. Strebleckenko if he knows that problem ?
For Test try to disable the anti-virus scanner.
Also try to install a fresh WXP and OlXP and try it here to determine if
there's a problem with your installation.

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:ey**************@TK2MSFTNGP09.phx.gbl...
Hi

OK, now the "To" field has a value and the message is saved in draft but I
am getting this error on send;

Unhandled Exception: System.Runtime.InteropServices.COMException
(0x8000FFFF): Catastrophic failure
at Redemption.SafeMailItemClass.Send()

The code is as follows;

Dim objApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objSafeItem As Redemption.SafeMailItem
Dim objMailItem As Outlook.MailItem
objApp = New Outlook.Application
objNS = objApp.GetNamespace("MAPI")
objNS.Logon("Outlook", "", False, False)
objMailItem = objApp.CreateItem(OlItemType.olMailItem)
objSafeItem = New SafeMailItem
objSafeItem.Item = objMailItem
objSafeItem.Recipients.Add(te**@mydomain.com)
objMailItem.Subject = "TestMessage"
objSafeItem.Body = "This message is sent from Redemption...."
objMailItem.To = "te**@mydomain.com"
objMailItem.Save()
objSafeItem.Recipients.ResolveAll()

objSafeItem.Send() '<=== Errror here

objNS.SyncObjects.Item(1).Start()
objSafeItem = Nothing
objMailItem = Nothing
objNS.Logoff()
objNS = Nothing
objApp = Nothing

"Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
So for the Newsgroup:

It worked on my system.
I added new lines of code for save the item before send.
When i call SafeItem.Send, the Mail is in my Draftsfolder until i click send/receive.
so I added a line to start synchronizing.

PLease test it first with a already running Outlook instance,
so you can see if there is a Problem with objNS.Logon....

here goes the code:

Dim objApp As Outlook.Application

Dim objNS As Outlook.NameSpace

Dim objSafeItem As Redemption.SafeMailItem

Dim objMailItem As Outlook.MailItem

objApp = New Outlook.Application

objNS = objApp.GetNamespace("MAPI")

objNS.Logon("Outlook", "", False, False)

objMailItem = objApp.CreateItem(OlItemType.olMailItem)

objSafeItem = New SafeMailItem

objSafeItem.Item = objMailItem

objSafeItem.Recipients.Add(in**@xxxx.xx)

objMailItem.Subject = "TestMessage"

objSafeItem.Body = "This message is sent from Redemption...."

'the new save

objMailItem.Save()

objMailItem.To = in**@xxxx.xx

objSafeItem.Send()

objNS.SyncObjects.Item(1).Start()

objSafeItem = Nothing

objMailItem = Nothing

objNS.Logoff()

objNS = Nothing

objApp = Nothing

--
regards,
Helmut Obertanner
DATALOG Software AG
http://www.datalog.de
[obertanner at datalog dot de]
"John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
news:uS**************@TK2MSFTNGP10.phx.gbl...
> Done, twice. Also received the two test messages.
>
> Regards
>
> "Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
> news:un**************@tk2msftngp13.phx.gbl...
> > please send it to [flash at x4u dot de]
> > i'm not at work now...
> >
> > --
> > regards,
> > Helmut Obertanner
> > DATALOG Software AG
> > http://www.datalog.de
> > [obertanner at datalog dot de]
> >
> > "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> > news:O3****************@TK2MSFTNGP12.phx.gbl...
> > > Thanks Helmut. BTW, a copy of my redemption project should be in

your
> > inbox.
> > > Was too large to post here.
> > >
> > > Thanks again.
> > >
> > > Regards
> > >
> > >
> > > "Helmut Obertanner" <fl***@nospam.x4u.de> wrote in message
> > > news:Ob**************@TK2MSFTNGP09.phx.gbl...
> > > > Hello,
> > > >
> > > > yes it is, you can write an Outlook Add-In and use the

Redemption from
> > > > www.dimastr.com
> > > > If Outlook is in a Exchange environment, you could use the
> > Administrative
> > > > Forms to enabled the dll to bypass the security block.
> > > >
> > > > --
> > > > regards,
> > > > Helmut Obertanner
> > > > DATALOG Software AG
> > > > http://www.datalog.de
> > > > [obertanner at datalog dot de]
> > > >
> > > >
> > > > "John" <jo**@nospam.infovis.co.uk> schrieb im Newsbeitrag
> > > > news:%2****************@TK2MSFTNGP12.phx.gbl...
> > > > > Hi
> > > > >
> > > > > Is it possible to write vb.net code around outlook 2000 dlls and > then
> > > use
> > > > > the code on ol2002 machines to send emails and bypass ol 2002 email
> > > block?
> > > > >
> > > > > Thanks
> > > > >
> > > > > Regards
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 20 '05 #10

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

Similar topics

2
by: MaxH | last post by:
I need to perform programmatically from a C# .net application the following tasks: _ open an outlook (or default e-mail client) compose message window; _ attach a document to the new message; _...
0
by: Elliot M. Rodriguez | last post by:
I know this is not an outlook forum, but I've sent a few posts about this very issue and cannot get any assistance. I hope someone here can help me through their experience. I am trying to send...
7
by: Chris Thunell | last post by:
I'm trying to loop through an exchange public folder contact list, get some information out of each item, and then put it into a vb.net datatable. I run though the code and all works fine until i...
5
by: Siv | last post by:
Hi, A little while ago I asked if anyone could help me with how to create an email using MS Outlook that contained an embedded picture file. Thanks to Jay Harlow I was able to get this working...
26
by: Tom Becker | last post by:
Is there a way, from Access, to programmatically click the Send and Receive button in Outlook?
3
by: Jeff | last post by:
I am trying to send emails from my application (not using a plugin, that will come later), I can create an email and add attachments. I can fill in the body etc. Word works for the editor. So...
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: philmarsay | last post by:
I have some code that loops through all contacts in a contact folder (approx 3000), reads some details from each contact and uses that information to perform various functions. However, as the...
5
by: =?Utf-8?B?TWFya1NraQ==?= | last post by:
For about a month now, I have had trouble with Outlook Express. When logging in to Outlook Express, I get an error message stating that the connection to server has failed. My internet connection...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
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.