Subprograms Part 2 - Custom Delphi Functions

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

ความคิดเห็น •

  • @thekoki487
    @thekoki487 5 ปีที่แล้ว +10

    Best I.T teacher ever, may Jesus continue to bless you and your family forever.

  • @MuffinLorde
    @MuffinLorde 10 หลายเดือนก่อน

    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.

  • @abdullah_abisola
    @abdullah_abisola ปีที่แล้ว +3

    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

  • @fogtailgamer8832
    @fogtailgamer8832 3 ปีที่แล้ว +3

    I will BELIEVE! 😂 Thanks again man, your are a REALLY good IT teacher. Keep up the good work! 🌟

  • @carmelitarabino283
    @carmelitarabino283 3 ปีที่แล้ว

    Hi Mr. Long. thank you for explaining it well..

  • @joseparada4430
    @joseparada4430 2 ปีที่แล้ว

    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.

    • @MrLongITandCAT
      @MrLongITandCAT  2 ปีที่แล้ว +1

      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.

  • @joseparada4430
    @joseparada4430 2 ปีที่แล้ว

    Can you explane a "nested" function and a "procedural type" of a funciton assigned into a variable?

  • @مشآعرالكترونية
    @مشآعرالكترونية 5 ปีที่แล้ว

    thank you my friend

  • @henkos6741
    @henkos6741 3 ปีที่แล้ว

    flawless

  • @punsthedisgrace
    @punsthedisgrace 5 ปีที่แล้ว +4

    thx

    • @thekoki487
      @thekoki487 5 ปีที่แล้ว

      Jesus loves you without judging you ; He accepts you as you are, regardless of your past.
      Jesus loves you fam.

  • @samtinashemaraya2322
    @samtinashemaraya2322 2 ปีที่แล้ว

    Thank you

  • @thekoki487
    @thekoki487 5 ปีที่แล้ว +9

    Jesus loves you without judging you ; He accepts you as you are, regardless of your past.
    Jesus loves you fam.

    • @Cptn8993
      @Cptn8993 4 ปีที่แล้ว +2

      the fuck does this have to do with jesus

    • @ichliebebaeumeweilbaum
      @ichliebebaeumeweilbaum 3 ปีที่แล้ว

      @@Cptn8993 maybe that jesus guy hacked the code that's why he came back to the server after getting banned

    • @aleclandman8194
      @aleclandman8194 2 ปีที่แล้ว

      @@Cptn8993 That's not very nice

    • @Cptn8993
      @Cptn8993 2 ปีที่แล้ว

      @@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.

  • @AlienInSider
    @AlienInSider 3 ปีที่แล้ว

    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