New TForm with new Properties
Q: I have created a new TForm class called TNewForm. And added a few published properties. Then added it to repository. Now, what…
Resize
[code lang=”delphi”]//Notice the 640 reference. procedure AdjustResolution(oForm:TForm); var iPercentage:integer; begin if Screen.Width > 640 then begin iPercentage:=Round(((Screen.Width-640)/640)*100)+100; oForm.ScaleBy(iPercentage,100); end; end; //call it like…
Small Fonts / Large Fonts…
>I have a Delphi program written on a computer with small fonts installed. >When this is run on a computer with identical properties…
Small Fonts / Large Fonts (2) – FormScaler
In article <3aaefd89_2@dnews>, William Meyer wrote: > Small fonts/large fonts is a problem without a clean solution. The > suggestion will be to…
Small Fonts / Large Fonts (3)
> > Hello, > > I made an application that looks fine when windows is using small fonts, but > if the user…
StayOnTop
Liang Liem wrote in message news: 37660B6D.83D9E151@capelon.se… Hi, I have a delphi-application that always using one of two forms. The application needs to…