Dude, I love your tutorials, you've helped me find so much information about Delphi that I couldn't find on Google and you explain it so well, it's gotten to the point where if I don't know how to do something in Delphi, I know I can just come to your YT channel.
Cool Way to Create the Function. I did this: function TForm1.Max3(inum1, inum2, inum3: Integer): Integer; var iHighest : Integer; begin iHighest := inum1; if inum2 > iHighest then begin iHighest := inum2; end else if inum3 > iHighest then begin iHighest := inum3; end; Result := iHighest; Utilized the iHighest Method to get things done
Placing the function where you do is the same to placing it inside Private zone? Is there any difference with that one and private? I see there are three areas... thank you.
If you declare a function in the private section, then only this unit file can use that function. If another unit or form is "linked" or uses this unit file, that other unit or form will not have access to the private methods and procedures.
@@aleclandman8194 What the fuck is not very nice on pointing out a topic has nothing to do with religion and jesus. Want to know wouldnt be very nice? If i said “Fuck off with your stupid religion.” That would not be very nice.
Best I.T teacher ever, may Jesus continue to bless you and your family forever.
Dude, I love your tutorials, you've helped me find so much information about Delphi that I couldn't find on Google and you explain it so well, it's gotten to the point where if I don't know how to do something in Delphi, I know I can just come to your YT channel.
Cool Way to Create the Function.
I did this:
function TForm1.Max3(inum1, inum2, inum3: Integer): Integer;
var
iHighest : Integer;
begin
iHighest := inum1;
if inum2 > iHighest then
begin
iHighest := inum2;
end
else
if inum3 > iHighest then
begin
iHighest := inum3;
end;
Result := iHighest;
Utilized the iHighest Method to get things done
smart
I will BELIEVE! 😂 Thanks again man, your are a REALLY good IT teacher. Keep up the good work! 🌟
Hi Mr. Long. thank you for explaining it well..
Placing the function where you do is the same to placing it inside Private zone? Is there any difference with that one and private? I see there are three areas... thank you.
If you declare a function in the private section, then only this unit file can use that function. If another unit or form is "linked" or uses this unit file, that other unit or form will not have access to the private methods and procedures.
Can you explane a "nested" function and a "procedural type" of a funciton assigned into a variable?
thank you my friend
flawless
thx
Jesus loves you without judging you ; He accepts you as you are, regardless of your past.
Jesus loves you fam.
Thank you
Jesus loves you without judging you ; He accepts you as you are, regardless of your past.
Jesus loves you fam.
the fuck does this have to do with jesus
@@Cptn8993 maybe that jesus guy hacked the code that's why he came back to the server after getting banned
@@Cptn8993 That's not very nice
@@aleclandman8194 What the fuck is not very nice on pointing out a topic has nothing to do with religion and jesus. Want to know wouldnt be very nice? If i said “Fuck off with your stupid religion.” That would not be very nice.
Long fucntion....
If (a>b) and (a>c) then
Else
(b>a)
else not
c biggest
With such a presentation, there are fewer follow-up adjustments