Does rdo supported in C#?

  • Thread starter Thread starter pcPirate
  • Start date Start date
P

pcPirate

Hi,
I just wanna ask a very simple question.
i) Does rdo supported in C#?
ii) If not, is there any alternative way? I mean, I must use rdo no
matter how.

Thanks in advance
pcPirate
 
Hi,

No, there's no support for RDO in C# as this technology is obsolete. You
can, however, access the corresponding API either through COM Interop or, in
the worst case, through P/Invoke.
 
Thanks,
However, how do I do that??? : (access the corresponding API either through
COM Interop or, in
the worst case, through P/Invoke) ???

Thanks in advance
pcPirate.

Dmitriy Lapshin said:
Hi,

No, there's no support for RDO in C# as this technology is obsolete. You
can, however, access the corresponding API either through COM Interop or, in
the worst case, through P/Invoke.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

pcPirate said:
Hi,
I just wanna ask a very simple question.
i) Does rdo supported in C#?
ii) If not, is there any alternative way? I mean, I must use rdo no
matter how.

Thanks in advance
pcPirate
 
I have never worked with RDO so I don't have any examples at hand. You can
refer to MSDN for samples on COM Interop and Remoting as well as for
detailed explanations. You can also post your question to the
microsoft.public.dotnet.framework.interop newsgroup.
 
pcPirate,
Start a new C# project in VS.NET.

1. Use Project - Add Reference to add a reference.
2. Select the COM tab
3. Select "Microsoft Remote Data Object 2.0" from the list
4. Click the "Select" button
5. Click the "Ok button

The above will create a COM interop assembly for you. Unfortunately I do not
have an example actually using COM interop from C#.

Hope this helps
Jay

pcPirate said:
Thanks,
However, how do I do that??? : (access the corresponding API either through
COM Interop or, in
the worst case, through P/Invoke) ???

Thanks in advance
pcPirate.

Dmitriy Lapshin said:
Hi,

No, there's no support for RDO in C# as this technology is obsolete. You
can, however, access the corresponding API either through COM Interop
or,
in
the worst case, through P/Invoke.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

pcPirate said:
Hi,
I just wanna ask a very simple question.
i) Does rdo supported in C#?
ii) If not, is there any alternative way? I mean, I must use rdo no
matter how.

Thanks in advance
pcPirate
 
Back
Top