Author Topic: Trouble adding a Custom Window to an Addin  (Read 10150 times)

priombiswas89

  • EA User
  • **
  • Posts: 47
  • Karma: +0/-0
    • View Profile
Re: Trouble adding a Custom Window to an Addin
« Reply #15 on: December 04, 2020, 12:01:27 am »
You reference "PackageListGrid.UserControl"

But your class is called UserControl1

What EA does is use that string to find the COM reference in the registry.
The registry will then tell EA where to find the dll to use to load this class.
Since this string is not found in the registry, EA can't create your control.

Geert

It worked, many thanks.