Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure TForm1.Table1CashGetText(Sender: TField; var Text: String;
DisplayText: Boolean);
begin
if Sender.AsInteger < 0 then
DBEdit1.Color := clRed
else
DBEdit1.Color := clBlack;
Text := Sender.AsString;
end;
private
{ Private declarations }
Cash: TField;
procedure CashGetText ( sender: TField; var text: string; displaytext: boolean );
Cash := Table1.FieldByName('bells');
Cash.OnGetText := CashGetText;
Table1.Open; // assuming Cash is a field in Table1.
procedure TForm1.CashGetText(sender: TField; var text: string;
displaytext: boolean);
begin
if Sender.AsInteger < 0 then
DBText1.Color := clRed
else
DBText1.Color := clWhite;
Text := Sender.AsString;
end;
Uses ..., ..., Form1;
Form1.MyProcedure ( param1, param2 ... );