Janela sempre no mesmo lugar

Delphi

03/05/2003

Como eu faco para que o usuario nao possa mover a janela e ficar sempre na posicao pre definida por mim?


Neoramza

Neoramza

Curtidas 0

Respostas

Aroldo Zanela

Aroldo Zanela

03/05/2003

Colega,

Para versão 7, mude a propriedade Align para alCustom e para versões anteriores, use a informação técnica abaixo:



community.borland.com

Article #28186: How can one prevent a TForm from being moved or resized?

QUESTION:


How can one disable a TForm from being moved or resized?


ANSWER:


Place the following code in the FormCreate event:



procedure TForm1.FormCreate(Sender: TObject);
var
hMenuHandle : HMENU;
begin
hMenuHandle := GetSystemMenu(Form1.Handle, FALSE); //Get the handle of the Form
if (hMenuHandle <> 0) then
DeleteMenu(hMenuHandle, SC_MOVE, MF_BYCOMMAND); //disable moving
DeleteMenu(hMenuHandle, SC_SIZE, MF_BYCOMMAND); //disable resizing
end;




If you also want to prevent the user from minimizing and maximazing the form, in the Object Inspector, select the form you are concerned with and under the BorderIcons, set the biMinimize and biMaximize properties to False.

Last Modified: 02-JAN-02


GOSTEI 0
POSTAR