Главная страница | назад





Article #15908: Removing a forms caption bar?

 Question and Answer Database
FAQ908D.txt Removing a forms caption bar?
Category :Windows API
Platform :All
Product :All 32 bit
Question:
How can I get rid of a forms caption bar?
Answer:
Reset the form style, then reset the height of the form. Note: You
will need to add a method to terminate the application, as there will
no longer be title bar buttons or a system menu.
Example:
procedure TForm1.FormCreate(Sender: TObject);
begin
SetWindowLong(Form1.Handle,
GWL_STYLE,
GetWindowLong(Handle,GWL_STYLE) and not WS_CAPTION);
Height := ClientHeight;
end;
7/16/98 4:31:28 PM

Last Modified: 01-SEP-99