By move I mean placing the control on the form where I want it to be. I an
using Visual Studio 2005. I'm mot using tables. Just for grins I created a
new blank form in my
existing project, added a textbox to it. I can resize the control but I'm
SOL if I want to move the control. What has me baffled is I can move
controls previously place on the
form.
VS 2003 defaulted to 'gridview' which allowed you to place controls anywhere
on the 'page' and move them anywhere on the 'page'.
This was to make it 'easy' for traditional windows-forms developers.
Unfortunately, this is a really bad way to design a web interface. It
consists of absolutely positioned divs on the page. It's dependant on the
end-user having a very specific viewport size, specific fonts set at
specific sizes. Which you can never depend on. I've had to deal with apps
written this way and as soon as you use a narrower browser, or bump your
font-size up a bit, the entire interface becomes a mess.
Instead, you're going to want to learn some basic HTML and CSS to do your
positioning of items on the screen rather than depending on Visual Studio to
do it for you.
-Darrel