I have a C# project with two forms. All compiles well. When I run the project, all forms are drawn as they are expected to.
A couple of days back, the DesignView of
For those searching around and finding no solace, I have another solution. The project I inherited has horrible code quality and the previous developer had mixed case all over his code because "It's case insensitive, so it doesn't matter"
So, while PopulateRevs
is, in fact, identical to POpulateREvs
in Visual Basic, that kind of laziness leads to issues. To wit:
Partmaster.vb
Form
I happened to see this in the .vbproj
file while looking at other solutions that didn't work. I happened to change Partmaster.Designer.Vb
to Partmaster.Designer.vb
(lowercase extension) and it worked.
So as another solution, while Visual Basic is not case sensitive, it looks like the .vbproj
file is. If you're stumped, another thing to make sure is that your file names and .proj
files share the same case.
(I realize this is tagged C#
, but I tested this in C# and the mixed case will cause problems there as well.)