rdo

C# Send mail using Redemption (RDO)

I am using Redemption (RDO) to send an e-mail. The mailiing works just fine, but when in Outlook the mail is recieved, the yellow envelope keeps closed. Normally you click on an unopened e-mail and then the icon change from a yellow closed envelope to a white opened envelope. When I send an e-mail using RDO the envelope stays yellow and ...

Exchange 2010 - Exchange MAPI connection problem

I have a software solution for Exchange 2000/2003/2007 and now hopefully after this for 2010. The software runs on the server and uses Exchange MAPI through RDO to talk the the exchange server, retrieving emails inside mailboxes. All works fine on Exchange 2000/2003/2007 but 2010 just won't budge. Keep on getting this error when trying ...

RDO to ADO.NET - rdoErrors in Oracle

I am converting some code from VB RDO (using an ODBC cursor) to ADO.NET Some of the old VB code loops through the RDO errors collection to get any ODBC or Server errors and log them accordingly. I've converted the code using Data.Common objects (ex: DBCOnnection, DBCommand) and using Datasets and ODBC. (I am NOT using Oracle .NET Prov...

Do all RDO Errors cause a runtime error?

I am looking at VB code and I see there is an RDOErrors collection where Server/ODBC errors are placed. Do all of these errors cause a runtime error? or is it possible there could be an RDOError that gets placed in the collection that doesn't cause a untime error and therefore require you to loop through the collection? ...

.NET ODBC Oracle Params getting param name returned by db provider- possible?

I'm converting some RDO code to ODBC Provider code in .NET. The problem is parameter names were not specified in the orignal code, but param values were retrieved by parameter name after the command was executed. Is there anyway to have parameter names populated by the provider once the command is executed so calling code can access pa...