delphi3000.com - the free delphi knowledge platform
delphi3000.com - the free delphi knowledge platform
Have a look at your member-status

connecting people's knowledge


  - Recent ArticlesRSS feed for Recent Articles on delphi3000.com
  - List of All Articles
  - Top Viewed Articles
  - Articles (+Attachem.)
  - Articles Of Interest
  - Categories
  - Top Uploader
  - Search
  - Index

  - My Home
  - Submit an Article
  - My Articles
  - My Personal Data
  - My Bookmarks
  - Activities
  - Login/Logout

  - Sign Up
  - Why Sign Up
  - Newsletter

  - Press
  - Advertise

  - Contact
  - Feedback





Community
Borland
ClubeDelphi
Dr. Bob
UK-BUG
Delphi Meetings
Planeta Delphi







Startblatt.de






Share this article with friendsShare this article with friends
Rate this articleRate this article - to keep the quality of delphi3000.com !
Comment this article or read through previous comments (0)


DialogUnits To PixelsFormat this article printer-friendly!Bookmark function is only available for registered users!
How to convert dialogs units in pixels
Product:
Delphi all versions
Category:
Shell API
Skill Level:
Scoring:
Last Update:
06/06/2003
Search Keys:
delphi delphi3000 article borland vcl code-snippet dialogunits, DialogBaseUnit, PixelsPerInch
Times Scored:
2
Visits:
2483
Uploader: Jean Claude Servaye
Company:
Reference: N/A
 
Question/Problem/Abstract:
How to convert dialogs units in pixels if the dialog do not use system font
Answer:




function DialogUnitsToPixels(DialogUnits: Integer; Canvas: TCanvas; Font: TFont):Integer;
var
   A : Array[0..52] of char;
   Z : Integer;
   U : Word;
begin
   // select the current font
   SelectObject(Canvas.Handle,Font.Handle);
   // Get DialogBaseUnit for system font
   U := HiWord(GetDialogBaseUnits) div 4;
   // compute mean width of characters in current font
   // as recommended by Microsoft
   A := 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
   Z := (Canvas.TextWidth(A) Div 26 + 1) Div 2 ;
   // Compute result and adjust for screen resolution
   Result := DialogUnits * Z Div U * Screen.PixelsPerInch div 96;
end;





Please rate this article!
Skill level:
BeginnerExpert

Useful:
No!Very!

Overall rating:
PoorExcellent



Comments to this article
Write a new comment













 
Sign up to consume product discounts for Bronze memberships !

read more


  Visit our Sponsor

 

  Community Ad of
R. Lefter
 
   














 







     
  Copyright © 2000 - 2007 delphi3000.com - All rights reserved. Terms of use. || Privacy
delphi3000.com is a service by bluestep.com IT-Services GmbH (Vienna)