views:

31

answers:

1

The two tableLayoutPanels have nothing in common.

In the first one, adding a specific row just makes all the Labels (and not the others controls) of the second tableLayoutPanel dissapear!

Has anyone encountered this problem? Solved it?

+3  A: 

Yes, I encountered this problem more than once. It regards to resource writer. If you have two different TLP's, modifying one will actually overwrite settings (which are kept in *.resx file) for another.

I googled it like half year ago and it seems that there are few people who had this problem - it happens IIRC in VS 2005 SP3 and VS 2008 SP2.

I don't think there is anything that could be done except preserving backup copy of the resx file and merging it after making the changes. Or upgrading to VS 2010 that allegedly does not have this defect (but I haven't actually tested it, so I might be totally wrong).

Paweł Dyda