Topic: Another Delphi Question....

Ok i know some basic java and i know in java you can do for example

if (Coords[0] > 224 && Start() == true) then begin

is there a way you can do that in Delphi?

such as like

if lStart.caption='On' && another procedure then begin ????

2

Re: Another Delphi Question....

function Foo:Boolean;
begin
  Result:=True;// or any code 
end;

if (not Start.Caption='On')  and (Foo) then
begin
end;

//for case insensitive
if SameText(not Start.Caption,'On')  and (Foo) then
begin
end;
If your people come crazy, you will not need to your mind any more.