![]() |
|
|
|||||||
![]() |
DotNet - How to use a C# control in vb 6 ? |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hi all
i have created a new c# custom control . if i want to use this control to my VB projects , what are the steps i must do ? can anyone let me know what are the things i must do step by step ? Thanks Senthil SenthilVel |
|
|
|
|
#2 |
|
Posts: n/a
|
Assuming that this is a DLL written in C#, you can place a copy of the DLL
in the bin directory of your VB application. You can then your DLL assembly by its namespace by using the Imports statement along with Imports System, etc. It should now be available and should work like any other .NET control in VB.NET. -- Christopher A. Reed "The oxen are slow, but the earth is patient." "SenthilVel" <> wrote in message news:e$... > Hi all > > i have created a new c# custom control . > > if i want to use this control to my VB projects , what are the steps i > must > do ? > > can anyone let me know what are the things i must do step by step ? > > Thanks > Senthil > > > |
|
|
|
#3 |
|
Posts: n/a
|
what i came to know is
Dotnet Dll's can only be used in VB 6.0 . Dotnet user controls cannot be used in VB6.0 , any thoughts ? Thanks Senthil "Christopher Reed" <> wrote in message news:... > Assuming that this is a DLL written in C#, you can place a copy of the DLL > in the bin directory of your VB application. You can then your DLL > assembly by its namespace by using the Imports statement along with > Imports System, etc. It should now be available and should work like any > other .NET control in VB.NET. > -- > Christopher A. Reed > "The oxen are slow, but the earth is patient." > > "SenthilVel" <> wrote in message > news:e$... >> Hi all >> >> i have created a new c# custom control . >> >> if i want to use this control to my VB projects , what are the steps i >> must >> do ? >> >> can anyone let me know what are the things i must do step by step ? >> >> Thanks >> Senthil >> >> >> > > |
|