You are here:

Delphi Programming

Recent Answers

2013-05-20 Delphi - Modify Component:

This should do the trick:    unit Credits;    {********************************************************************************   *  TScrollingCredits version 1.3          

2013-05-16 Delphi - Dragging Memos code:

Looks like you have code that's missing content due to bad copy/paste.  Here's what I was able to come up with.    procedure TForm1.MyMemo1DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState

2013-05-16 Delphi - Dragging Memos code:

It could possibly be the uses clause as you need several units to implement this code.  Here how it should look:    unit MyMemo;    interface    uses    SysUtils, Classes, Controls, StdCtrls, Messages

2013-05-03 Delphi - Stringgrid column totalling:

I'm not 100% if this is what you are after, but should be close.      function CountIf(Expression: boolean): integer;  begin    Result := Ord(Expression);  end;    procedure TForm1.FormCreate(Sender: TObject)

2013-02-25 Delphi - Delphi returning a value from a form:

Sure.  It's pretty simple once explained I'd bet.  I first came up with the idea when I saw how many Delphi developers would access one form's properties from another form...sometimes even both directions

Categories

Browse Alphabetically

©2013 About.com. All rights reserved.