Hi, I have a VB6 project that contains a reference to a tlb from another .Net project that I have.
The problem is that whenever I rebuild the .Net project the reference in the VB6 project becomes out-of-date and I have to re-enter it (i.e. when I open the project references window it says it's "MISSING"). Is there any way that the VB project reference will automatically update to pick up the new .tlb file which will always be in the same location?
I have tried using the GuidAttribute and the ProgId variables as follows:
[GuidAttribute("586D4B1C-B368-4cb5-8377-D3B5A7420000")]
[ClassInterfaceAttribute(ClassInterfaceType.AutoDual)]
[ProgIdAttribute("Namespace_Class1")]
public
class Class1: IInterfaceI hope this is explained properly.
Thanks,
Wallace