1 2 3 4
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
1 2 3 4
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...
1 2 3 4
function indexOfValue(list : TStrings; value : string): integer; begin Result := list.IndexOf(value); ...
1 2 3 4
{$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...
1 2 3 4
// 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...
1 2 3 4
type
THashValue = Cardinal;
...
Delphi On custom index for class(TList)
by ahuser,
February 12, 2009 17:32
And this is the code that u...
1 2 3 4
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...
1 2 3 4
{$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...
1 2 3
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...


The program below outputs t...