Scalabium Software

SMExport advertising
Knowledge for your independence'.
Home Delphi and C++Builder tips


#96: How can I hide an application from Windows TaskBar?

If you needs to hide the own application from Windows Taskbar, you can use the next procedure:

procedure TForm1.FormCreate(Sender: TObject);
begin
  ShowWindow(Application.Handle, SW_HIDE);

  SetWindowLong(Application.Handle, GWL_EXSTYLE,
          GetWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW);

  ShowWindow(Application.Handle, SW_SHOW);
end;


Published: September 19, 2000

See also
 
Paradox ActiveX
Clarion to Text converter
ABA Spreadsheet Convert
Paradox to Text converter
Excel Reader (dll)
SMImport suite
Paradox to MS Access converter
Fast Document Viewer
dBase Viewer
Excel Web-stream
 
 


Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2023, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMExport advertising