function IndexOfValue(const List: TStrings; const Value: String): Integer;
var
I: Integer;
...
Delphi On TStrings IndexOfValue
by Tony,
November 03, 2011 06:07
function IndexOfValue(const List: TStrings; const Value: String): Integer;
var
I: Integer;
...
type TProcedureParam = procedure; ...
Delphi On What has been called a &quo...
by Ants,
December 31, 2010 11:50
That code is a nice pile of...
Delphi On TStrings IndexOfValue
by atmotaIrrap,
September 13, 2010 08:46
I suck coz I only appear to...
program TestChangeValue;
{$APPTYPE CONSOLE}
uses Classes, SysUtils;
...
Delphi On Change Value Or Word in a W...
by Wouter van Nifterick,
March 05, 2010 03:11
The program below outputs t...
function getFirstElementTextByName(const ElementName: string; const XMLDoc: IXMLDocument): string; var NodeList: IDOMNodeList; ...
Delphi On XML Helper Function
by Wouter van Nifterick,
March 05, 2010 02:49
I didn't really look into t...
Delphi On TStrings IndexOfValue
by DarkAxi0m,
September 25, 2009 03:50
Sorry i should have made it...
function indexOfValue(list : TStrings; value : string): integer; begin Result := list.IndexOf(value); ...
{$IFNDEF UNICODE} // pre Delphi 2009
type
UnicodeString = WideString;
...
Delphi On Change Value Or Word in a W...
by ahuser,
February 22, 2009 11:00
This code is is based on yo...
// not tested var ...
Delphi On Change Value Or Word in a W...
by X-Ray,
February 21, 2009 17:46
this comment doesn't direct...
type THashValue = Cardinal; ...
Delphi On custom index for class(TList)
by ahuser,
February 12, 2009 17:32
And this is the code that u...
function TMylist.GetNameIndex(const aName: string): integer; // use "const" for strings to eliminate the injected try/finally var LocalList: PPointerList; ...
Delphi On custom index for class(TList)
by ahuser,
February 12, 2009 11:52
The following code should b...
{$IF not declared(TBytes)}
type
TBytes = array of Byte;
...
Delphi On Array Helper Functions
by Andreas Hausladen,
February 04, 2009 11:26
How did you get this to com...
procedure CopyIntoArray(var DestArray: Array of Byte; SourceArray: Array of Byte; StartIndex: integer); begin ...
Delphi On Array Helper Functions
by DarkAxi0m,
February 03, 2009 23:14
Using Delphi 7;
Move seems...

I use functions like this t...