how to use .net component and classes from visual basic ?
-
i hard that .net component and classes can be used from visual basic but i don't know how to use it from visual basic. so if any body know then please tell in detail how can i use .net component and classes from visual basic. tbhattacharjee
-
i hard that .net component and classes can be used from visual basic but i don't know how to use it from visual basic. so if any body know then please tell in detail how can i use .net component and classes from visual basic. tbhattacharjee
You can't use .NET Framework classes directly in VB6, but you can use classes and components that you write. So, you'll have to write wrappers around anything you want to use, register the Assembly and create a Type Library for it. For an example of this see this example on MSDN[^]. RageInTheMachine9532