Unmovable Form

  • Thread starter Thread starter Catalin Lungu
  • Start date Start date
C

Catalin Lungu

Hi,
I need to make unmovable forms. I can do that changing the windowstate to
maximize. But with this property the max size of the working area doesn't
count the size of taskbar. And, when I run the app, first I hide the task
bar and the app doesn't has the height of the screen.

Is there any way to make forms do not move?

TIA,
C.
 
Hi Catalin,

Just use form.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
No border - no moving

Kind Regards, Alex Meleta
[TechBlog] http://devkids.blogspot.com



CL> Hi,
CL> I need to make unmovable forms. I can do that changing the
CL> windowstate to
CL> maximize. But with this property the max size of the working area
CL> doesn't
CL> count the size of taskbar. And, when I run the app, first I hide the
CL> task
CL> bar and the app doesn't has the height of the screen.
CL> Is there any way to make forms do not move?
CL>
CL> TIA,
CL> C.
 
Back
Top