Reputation: 6780
I am in the middle of (trying) to create a Class Library available for use in VB6/VBA. With some assistance received here I have now done the following:
I popped open excel to run a quickie test and the TLB is available but I have two problems:
Set obj = New MyObj
)I get the error:Automation error The system cannot find the file specified.
I can set a reference to the Object and the Intellisense can see it, I just get that error when I actually try to create the Object. Did I miss a step?
Upvotes: 2
Views: 349
Reputation: 11991
7: Skip /tlb
option of regasm it's a non-issue (not needed). Add /codebase
Upvotes: 2