Permalink

0

Installing/Removing Fonts

Installing/Removing Fonts: AddFontResource(Path+\FileName.TTF’); // to add font to system SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0); //to notify that fonts are changed. you can use: RemoveFontResource(Path+’Data\FileName.TTF’); // to remove it from system [tags]Delphi, Misc, Fonts[/tags] Installing/Removing Fonts: AddFontResource(Path+\FileName.TTF’); // to add font to … Weiterlesen

Permalink

0

Delay (Boris Nienke)

Boris Nienke Sleep Delay Wait Pause procedure Delay(iMilliSec: integer); var tVergl: TTimeStamp;     iTime : integer; begin   tVergl := DateTimeToTimeStamp(now);   iTime := tVergl.Time;   repeat     tVergl := DateTimeToTimeStamp(now);   until (tVergl.Time – iTime) >= iMilliSec; … Weiterlesen