Archive

Posts Tagged ‘screen’

Delphi and Kylix Splash Screens / Logos

May 4th, 2008 m3Rlin 1 comment
If you have additional Delphi or Kylix screen shots, logos, beta splash screens that are not listed here, please send them to m3Rlin@delphifaq.net and I will add them!

Borland Delphi 3 Splash Screen

Borland Delphi 4 Field Test 3 “Allegro” Splash Screen

Borland Delphi 4 RC 2 Splash Screen

Borland Delphi 4 Splash Screen

Borland Delphi 5 Splash Screen (thanks to Michael Byrne & Joachim Schonart)

Borland Delphi 6 Splash Screen

Borland Delphi 7.0 Personal Splash Screen

Borland Delphi 2005 Splash Screen

Embarcadero Code Gear Delphi C++ Builder 2009 IDE Splash Screen

How to Determine the Screen Resolution

December 15th, 1999 m3Rlin No comments

There are two ways to determine the screen’s height and width.

1) Use the global Screen variable.

uses
  Forms;
...
  Screen.Height { Screen height in pixels }
  Screen.Width  { Screen width in pixels  }
...

2) Use the Windows API GetSystemMetrics() function. This function can be useful in applications that don’t use the VCL like console applications.

uses
  Windows;
...
  GetSystemMetric(SM_CXSCREEN) { Screen height in pixels }
  GetSystemMetric(SM_CYSCREEN) { Screen width in pixels  }
...