VBA Classes - The Definitive Guide

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 พ.ย. 2024

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

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

    Thank you from Ukraine. I searched for this in the Russian-language TH-cam segment, but unfortunately I couldn't find anything suitable there. Found in this video. Quite a simple and handy explanation for the topic I'm looking for.

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

    Good explanation - i especially liked the walk through of the creation of the cat object from the cat class showing the constructor etc.

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

    Hey Ben, great job. It approches the topic conceptually with a very useful template. Thanks to people like you!

  • @aNDy-qh1em
    @aNDy-qh1em 3 ปีที่แล้ว +4

    Hi, thanks, very detailed explanation!
    'On Error Resume Next' seems to be not nice practice as in the runtime there could be other error passing by which should not be disregarded.
    IMHO it would be nicer to have 'Sound' method inside Animal interface that would bark for the dog and meou for a cat instance.

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

    Really good example for interfaces and classes use. This could be also in shorter version for not as patient people as me :D Anyway, good effort!

  • @LuisBreak
    @LuisBreak 6 หลายเดือนก่อน

    Great tutorial. Very helpful. Thanks!!! I was wondering two things. 1. Should we avoid On Error Resume next since it is not a good practice and instead having a common method called Animal.Sound() that will be implemented by each Specific Animal? 2. Should the variable animal be declared as Animal Type instead of Variant? Is that possible? In other languages that would be more appropriated, since Variant would accept Any type and that would cause an error in the code for sure.

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

    This is hilarious and totally explained. Thank you Ben.

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

    Excellent knowledge and presentation, is this possible to apply inheritance of classes from other classes (not interfaces) in VBA

  • @joukenienhuis6888
    @joukenienhuis6888 ปีที่แล้ว

    Great explanation of object oriented coding. I only don’t see the use with Excel in this example, only just to get to the vba screen.

  • @chrisk.2957
    @chrisk.2957 9 หลายเดือนก่อน

    Thank you Ben! In the Loop for the Debug.Printing (animal.Name) I get a runtime error 438 (without error handling, otherwise it stays blank). Any idea? Thanks.

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

    يعطيك الصحة بارك الله فيك

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

    Excellent tutorial, very well explained

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

      Thanks Julian :)

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

    Very clear video, thanks. Do you do any work with Access?There are few
    videos on class modules and Access. I realize that your samples use vba
    and are not necessarily limited to excel.

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

      Sorry I no longer develop in Access. You are right; this video transfers 100% across to Access as well.
      Access VBA has it's own set of Access objects and it will be harder to visualise the objects in a database compared to a worksheet, so I recommend learning in Excel first.

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

    Nice, thank you!

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

    Thank you.

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

    Dear Ben,
    Thanks for sharing knowledge. let me know how can access to your code?

  • @عليعلي-ن1خ3ص
    @عليعلي-ن1خ3ص 9 หลายเดือนก่อน

    I don't see you using the Animal interface!

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

    can you tell me why I need to learn Object oriented concept before or as a prerequisite to learn VBA? Can you give me an example from real life as an analogy so I can understand it better? Thank you

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

      Hi Userme, VBA is built upon OOP principles like many other programming languages, so once you understand OOP, you understand the fundamentals of VBA and how you interact with it will be clearer.
      For a great answer on VBA and OOP principles see: stackoverflow.com/a/31861832/15011558

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

    I don't suppose there examples of the lecture that can be downloaded?

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

    hi, the video is really exhaustive.
    A question if possible:
    I am trying to use, almost like in your example, a property which is a collection, but which is not private but is also present in the interface. I am only getting errors such as "invalid argument".
    It is possible to implement a collection in an object that implements an interface.
    Thanks in advance.
    Lorenzo

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

    Hi, Ben! Why do we need to use Get-Let-Set statements to add properties to class if we can just use Public variables in classes?

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

      Hi Alex, well you may want to do much more instead of just setting a public variable. I kept the examples in the video simple, but there's nothing stopping you expanding on them:
      For example in Let you could do some checks first, maybe an if statement to check the name of the animal does not exceed 30 characters, or do a check that the cats age is not over 100 years old. Your Let checks can go on for as long you like!
      For the get, you may want to do a calculation first, for example instead of just saying 'meow' you could randomise the result with some extra code so the cat says 'meow', 'purrr', 'hiss' and so on to add some variety. Again impossible with a simple public data type.
      You can expand your set-get-let's as much as you like and get as interesting as you want, while the public variables are simple data types only: strings, integers and so on.
      I hope these examples help, good luck!

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

      @@databen7194 Thank you! Now it became much more clear to me.

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

    Thank you. :-)

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

    Good Ben, what is the name of the next video to this? This was very intersting

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

      Could it be this one?
      th-cam.com/video/rZ96jR_y4gY/w-d-xo.html&ab_channel=DataBen

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

      @@thearchibaldtuttle Thank you, i will check it out

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

    Thanks

  • @LokeshKumar-yi3ln
    @LokeshKumar-yi3ln 3 ปีที่แล้ว +1

    Could you please share the code..

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

      Check his next video, the download link is in the description
      th-cam.com/video/rZ96jR_y4gY/w-d-xo.html&ab_channel=DataBen

  • @hichamhadj9640
    @hichamhadj9640 8 หลายเดือนก่อน

    Excellent toturial, I only wish the examples were more practical like contacts, orders, forms... Etc, instead of cats and dogs. Don't get me wrong, I love cats 😂

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

    Just wait till you own pets, one cat of four here doesn't like toys, just pet treats and doesn't give up the cheek rubs until you give him enough, he almost never meows, at first I thought he was mute, then one day at the back door he did. Another is a theif, you'll wake up to a roll of toilet paper all unrolled and in fragments of pieces, so you have to hide it in cabinets, as for cabinets we had to put child locks on the cabinet under the kitchen sink, they learned how to open it, and there's chemicals that could harm them. One is so stupid he likes his little pot pom balls and likes to play catch. The last cat won't let daddy out of his sight, and is usually against him.
    As for dogs, I've had two that were so faithful they lived a fu natural life, you could shake the keys and say ride and they will beat you to the car. I've only had one dog learn how to get out of the kennel, he loved to run, and a anonymous neighbor hit him and brought him home for a burial.
    I tried living without a pet, even worked weekly at a shelter just to love on them.
    Sorry for rant.. but the discussion just brought it on.