simple enhancement to the Delphi IDE
simple enhancement to the Delphi IDE: Add the following tool, with Tools | Configure Tools: Title: E&xplore Project Program: C:\WINNT\Explorer.exe Working dir: c:\winnt…
Version Compiler directives
Delphi-version compiler directives: {$IFDEF VER80} – Delphi 1 {$IFDEF VER90} – Delphi 2 {$IFDEF VER100} – Delphi 3 {$IFDEF VER120} – Delphi 4…
Disk In Drive
Q: How to check if there’s a Disk in a Drive? A: [code lang=”delphi”]function DiskInDrive(Drive: Char): Boolean; var ErrorMode: word; begin { make…
Animated Cursor in Resourcefile
>does anybody here knows how can I do a RC file with an animated cursor? Borland’s resource compiler does not understand the ANICURSOR…
Animated Cursors
animierte Cursor benutzen Frequently Asked Questions – Using an animated cursor. Question: How do use an animated cursor? Answer: You will first need…
Bezier curves
Bezier curves Kurven füllen von Polygonen When I try this… [code lang=”delphi”]var p: array[0..20] of TPoint; begin canvas.MoveTo(50, 10); p[0].x := 10; p[0].y…
Bitmaps: Accessing Big Images
Luis Antonio wrote in message news:7ksu6u$ c3l14@forums.borland.com… > Hello: > > I’m making a cartographic program that use an TImage with an >…
Bitmap: Alpha blending
Here’s the code. This is particularly neat to use if you want to place text on a bitmap and guarantee that the text…
Bitmaps: Brightness Contrast
On Tue, 31 Aug 1999 14:51:36 +0800, “xiaomin” wrote: >how to adjust Bright and constant for any format >of bitmap(pf4 ,pf8…). > brightness,…
Bitmaps: Create a monochrome bitmap
This function creates a ‘grayed’ out bitmap. Simply pass it a bitmap and a outline color.