Interface: String Manipulation Example In VBA

Поделиться
HTML-код
  • Опубликовано: 15 сен 2024
  • Please contact for any project or VBA Automation.
    Contacts:
    Email: 1997ismail.hosen@gmail.com
    Whatsapp: +8801515649307
    LinkedIn: / md-ismail-hosen-b77500135
    Facebook: / mdismail.hosen.7
    RUclips: / @mdismailhosen8280
    File link: excelautomatio...
    First Video: • Importance and Uses of...
    Second Video: • Interface Implementati...
    Third Video: • Interface: String Mani...
    Fourth Video: • Interface: Export Data...

Комментарии • 4

  • @ragegameplay1127
    @ragegameplay1127 9 месяцев назад

    Keep posting, our videos are incredible

  • @7Denial7
    @7Denial7 4 месяца назад

    Thank you very much for great content! And I want to point out that this particular example in this video is a great example of how you Can use interfaces to bypass the VBA limitation of not being able to pass function pointer to another function! I was thinking about it too - If you want to pass a particular function in order for it to do certain stuff in another function you just create interface and multiple classes that represent various functionality!
    And another idea for your next video - is you Can show how you Can create classes with default instance of the class, so you wont have to New up instances all the time. For this particular example, where you use a class as a function this would be quite useful! And in the end, If a class doesn't hold any state of its own, using default instance of the class without having to do "New" all the time seems reasonable

    • @mdismailhosen8280
      @mdismailhosen8280  4 месяца назад

      Thanks for your kind words. I use default instance with constructor idea sometimes. You may checkout my Factory method pattern video for that. I use no state class module for utility classes. Like I have a utility class for Text manipulation. (Text.BeforeDelimiter, Text.AfterDelimiter, Text.IsStartsWith etc).