var
 hOldWnd :HWND;

...

Delphi draw a highlight box around...

by Byefrog, January 02, 2011 21:09, No refactoring, tagged with object, delphi, FrameWindow, box, control, highlight

Show a bounding box around ...

B55670cde5a8d6656d0d7f16351f24c3 Talk
procedure TfrmOperationDetail.SaveOperationInfo;
var
  s: string;
...

Delphi What has been called a &quo...

by blackbird-crow-raven.myopenid.com, December 30, 2010 16:51, 1 refactoring, tagged with sql, ado, delphi, steaming pile of horse dung

I am refactoring a large ap...

55502f40dc8b7c769880b10874abc9d0 Talk
unit Unit1;

interface
...

Delphi Draw Canvas Arrow

by Byefrog, December 07, 2010 02:59, 1 refactoring, tagged with delphi, canvas, draw, arrow

I'm trying to create an arr...

B55670cde5a8d6656d0d7f16351f24c3 Talk
function indexOfValue(list : TStrings; value : string): integer;
 begin
  Result := 0;
...

Delphi TStrings IndexOfValue

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

this function finds the fir...

C99bb2b0dfcf7dba9aabf244a3330ac2 Talk
function getFirstElementTextByName(ElementName: string; const XMLDoc: IXMLDocument): string;
var
  NodeList: IDOMNodeList;
...

Delphi XML Helper Function

by jamiei, March 27, 2009 18:11, 2 refactorings, tagged with xmldocument, delphi

This is intended to be a he...

Ec72b0ab3eb1855c56fd04bcc886f65c Talk
Function TfrmProc.ChangeValue( pData : WideString; KeyVar: String; pIncr : Integer ) : WideString;
	VAR     X : Byte;
		 _lPosIni, _lPosEqual,	_lPosSep : smallint;
...

Delphi Change Value Or Word in a W...

by jlouro.myopenid.com, February 20, 2009 12:44, 3 refactorings, tagged with delphi

It is something that we hav...

026393f9e622575870f6055d0f4853e3 Talk
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
procedure CopyIntoArray(var DestArray: Array of Byte; SourceArray: Array of Byte; StartIndex: integer);
var
  i: integer;
...

Delphi Array Helper Functions

by jamiei, February 02, 2009 00:04, 3 refactorings, tagged with pointers, array, delphi

To get this Section started...

Ec72b0ab3eb1855c56fd04bcc886f65c Talk