"Base class
<baseclassname1>
specified for class '' cannot be different from the base class '' of one of its other partial types"
The problem is that I only declared the class in one place, the actual class file, and only declared it once, non partially. All my other classes that inherit from "DialogBase" work fine, but one file with the most code just stopped working.
What else could be the problem? Could it be declared partial somewhere else?
Class CostDialog inherits DialogBase(This works fine)
Class Blend inherits DialogBase(This errors)
Blend
is only written as Public Class Blend
in the Blend.vb
file ONCE
This error makes no sense