Mega Code Archive

 
Categories / Delphi / System
 

How to auto hide IDE windows when codingdesigning

Title: How to auto hide IDE windows when coding/designing /**************************************** // Paste into AutoHideIDE.dpk //**************************************** package AutoHideIDE; {$R *.res} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES OFF} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESIGNONLY} {$IMPLICITBUILD OFF} requires rtl, vcl; contains AutoHide in 'AutoHide.pas'; end.