Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I cannot find the dll to RDO in my Visual Studio 2010. Where can I get this library and how to download it to visual studio so I can use it in my project. Thanks

FYI: This is my code that I enherited from CapGimini after their contract exdpired.


VB
Option Strict Off
Option Explicit On
'Imports Artinsoft.VB6.Utils
Imports Microsoft.VisualBasic
'Imports SEGSupport.UpgradeStubs
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Windows.Forms

Module RdoLib

   Public gRDOenv As RDO.rdoEnvironment ' RDO Environment cf; DAO Workspace
   Public grdoEnvironment As RDO.rdoEnvironment ' RDO Environment cf; DAO Workspace

   Public gRDOConns As RDO.rdoConnections ' Default Connections collection for gRDOEnv
   Public grdoConnections As RDO.rdoConnections ' New environment Connections Collection

   Public gRDOconn As SqlConnection ' Default RDO Connection cf; DAO Database
   Public gRDOconnection(10) As SqlConnection ' New RDO Connection cf; DAO Database

   Public giNoConnections As Integer ' Number of connection objects

   'Public gRDOQuery() As SqlCommand = ArraysHelper.InitializeArray(Of SqlCommand)(11) ' RDO Query object
   Public gRDOQuery(11) As SqlCommand
   Public gRDOrs As DataSet ' RDO Resultset cf; DAO Recordset
   Public gRDOcol As RDO.rdoColumn ' RDO column cf; DAO Field'
Posted
Updated 30-Jun-14 8:45am
v2
Comments
Sergey Alexandrovich Kryukov 30-Jun-14 14:06pm    
Are you trying to use RDO, Remote Data Objects? If so — this is so outdated thing. If you are already using System.Data, which means using ADO.NET, why using RDO?
—SA
Maciej Los 30-Jun-14 15:25pm    
My virtual 5!
Sergey Alexandrovich Kryukov 30-Jun-14 15:33pm    
Thank you, Maciej.
—SA
[no name] 30-Jun-14 14:42pm    
Are you attempting to port VB6 code to .NET? Just use ADO and forget the pre-.NET code.
Maciej Los 30-Jun-14 15:25pm    
My virtual 5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900