if statement in delphi 7 code example
Example 1: delphi if statement
//x is a boolean or a condition that is true
if x = true then
begin
ShowMessage('x is true');
end
Else If y = 'Picca' Then//y is a string that you can check with an edit
ShowMessage('hello '+y)
Else
ShowMessage('last option');
Example 2: if then else in delphi
j := 50;
if j >= 0 then
if j = 100 then Caption := 'Number is 100!'else
Caption := 'Number is NEGATIVE!';v