Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

confusing net interop with com

Status
Not open for further replies.

phunugus

Programmer
Dec 26, 2002
21
0
0
US
Im writing a com object in VB.NET for VBScript. There is 1 class and 1 enum in the assembly.

In my script writing app (PrimalCode), it says that the class's name has a underscore preceding it. Is this the interface? If its the interface, then wheres the class? When im creating this object using CreateObject, should I use:

Dim o
Set o = CreateObject("MyVBNetComLib.TheClass")

- OR -

Dim o
Set o = CreateObject("MyVBNetComLib._TheClass")

any help?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top