Problem with visual studio.net : Code and window designer..

  • Thread starter Thread starter hanct
  • Start date Start date
H

hanct

This is my first time using VS.net...and I think overall its very
good..
However I encounter some problem...

WHen i try to create a window form....i realize that if i create the
form programmatically....I realize it isnt update in the property
window of the form!!!!!!

That is , whenever i modify my form using the user friendly property
editor for my form....its updated in the code as well
automatically...but when i update in my code programmatically, its
not update in my property editor!!!!

Worst thing is, when i try modify my form in the property
editor..those code i add programmatically before to the form codes ,
disappear!!...:(
 
Hi Hanct,

The properties in the designer are only the properties which are in the code
called "Designer part, do not change this code"

You can open that part by pushing on the little + before the row.

It is not always impossible to change that code, but when you are new, I
would not do that, because you can completly ruin your program by doing it.

Properties changes in code are not reflected in the designer.

I hope this helps,

Cor
 
Back
Top