You are here:
This should do the trick: unit Credits; {******************************************************************************** * TScrollingCredits version 1.3
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
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
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)
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