.Net Custom Components "disappear" after file save

Posted by EatATaco on Stack Overflow See other posts from Stack Overflow or by EatATaco
Published on 2010-04-05T21:44:08Z Indexed on 2010/04/05 22:23 UTC
Read the original article Hit count: 189

Filed under:
|
|

I might have a hard time explaining this because I am at a total loss for what is happening so I am just looking for some guidance. I might be a bit wordy because I don't know exactly what is the relevant information.

I am developing a GUI for a project that I am working on in using .Net (C#)

Part of the interface mimics, exactly, what we do in another product. For consistency reasons, my boss wants me to make it look the same way. So I got the other software and basically copied and pasted the components into my new GUI.

This required me to introduce a component library (the now defunct Graphics Server GSNet, so I can't go to them for help) so I could implement some simple graphs and temperature/pressure "widgets."

The components show up fine, and when I compile, everything seems to work fine. However, at some point during my programming it just breaks. Sometimes the tab that these components are on starts throwing exceptions when I view the designer page (A missing method exception) so it won't display. Sometimes JUST those components from the GSNet library don't show up. Sometimes, if I try to run it, I get a not-instantiated exception on one of their lines of code in the designer code file. Sometimes I can't view the designer at all.

No matter what I do I can't reverse it. Even if I undo what I just did it won't fix it. If it happens, I have to revert to a backup and start over again.

So I started to backup pretty much every step. I compile it and it works. I comment out a line of code, save it, and then uncomment that same line of code (so I am working with the same exact code) and the components all disappear. It doesn't matter what line of code I actually comment out, as long as it is in the same project that these components are being used.

I pretty much have to use the components. . . so does anyone have any suggestion or where I can look to debug this?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET