Scalabium Software |
|
Knowledge for your independence'. | |
Home Delphi and C++Builder tips |
#61: How can I read the vertical refresh rate of the display? |
|
If you need retrieve the value of the vertical refresh rate of the your monitor, you can call the GetDeviceCaps API's function with VREFRESH parameter. This feature are available on Windows NT platform only, so before using you must check the Windows version. For example, var ov: TOSVersionInfo; vr: Integer; begin ov.dwOSVersionInfoSize := SizeOf(ov); GetVersionEx(ov); if OV.dwPlatformID = VER_PLATFORM_WIN32_NT then begin vr := GetDeviceCaps(Form1.Canvas.Handle, VREFRESH); Label.Caption := 'Frequence: ' + IntToStr(vr) + ' Hz'; end; end;
|
Copyright© 1998-2024, Scalabium
Software. All rights reserved. |