Delphi On TStrings IndexOfValue

by DarkAxi0m, September 25, 2009 03:50

Sorry i should have made it...

C99bb2b0dfcf7dba9aabf244a3330ac2 Talk
1
2
3
4
function indexOfValue(list : TStrings; value : string): integer;
 begin
  Result := 0;
...

Delphi TStrings IndexOfValue

by DarkAxi0m, September 23, 2009 03:46, 2 refactorings, tagged with delphi, TStrings

this function finds the fir...

C99bb2b0dfcf7dba9aabf244a3330ac2 Talk
1
2
3
function TMylist.GetNameIndex(aName: Sting): integer;
var
...

Delphi custom index for class(TList)

by DarkAxi0m, February 12, 2009 05:17, 2 refactorings, tagged with delphi, Tlist

I often find myself copying...

C99bb2b0dfcf7dba9aabf244a3330ac2 Talk
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...

C99bb2b0dfcf7dba9aabf244a3330ac2 Talk