Answers for "delphi if-else if"

-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');
Posted by: Guest on April-16-2020

Browse Popular Code Answers by Language