1
vote
How can i create a new instance of a class?
Another, messier version is using "class of type" and TObject.ClassType
type
TFoo = class
private
{ private declarations }
public
{ public declarations }
constructo …
8
votes
The fastest way to compare a partial string?
Use StrUtils.AnsiStartsStr for case-sensitive, StrUtils.AnsiStartsText for case-insensitive
(add StrUtils to your uses clause)
…
12
votes
What is the most common way to create a folder selection dialog using Delphi?
There are two overloaded routines in FileCtrl.pas called SelectDirectory
For a modern look, use the second form, with sdNewUI
var
dir : string;
begin
dir := 'C:\temp';
…
