if staements in delphi
// Illustrate the same, but with multiple actions
IF 1 = 1 then
begin
ShowMessage('We now have');
ShowMessage('multiple lines');
end;
if staements in delphi
// Illustrate the same, but with multiple actions
IF 1 = 1 then
begin
ShowMessage('We now have');
ShowMessage('multiple lines');
end;
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
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');
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us