How to: Make a drop down menu in power point

Поделиться
HTML-код
  • Опубликовано: 30 янв 2021
  • In this video, Im going to show you how to add a drop down menu in Powerpoint. This is great for interactive powerpoints with clients, as you could make selections whilst in presentation mode.
    VB Script you need to "copy paste":
    __________________________________
    Private Sub ComboBox1_GotFocus()
    If ComboBox1.ListCount = 0 Then AddDropDownItems
    End Sub
    Sub AddDropDownItems()
    ComboBox1.AddItem "Select Here"
    ComboBox1.AddItem "1"
    ComboBox1.AddItem "2"
    ComboBox1.AddItem "3"
    ComboBox1.AddItem "4"
    End Sub
    __________________________________
    Dont forget to save it with Macro!
  • НаукаНаука

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

  • @JesusLovesHisCreations
    @JesusLovesHisCreations 3 года назад

    Thank you, I have been searching hi n lo for these...thank you so much...😊🤗👍👏🙏💪

  • @samuelbarrett6921
    @samuelbarrett6921 3 года назад +1

    How do you get you get the dropdown list to revert to empty at the end of the slideshow?

  • @balajipadmanabhan929
    @balajipadmanabhan929 Год назад

    Hi, I need a help, is it possible to change the color of the drop-down while selecting the option?

  • @user-wx2zh4si1e
    @user-wx2zh4si1e 8 месяцев назад +1

    Doesn't work after saving, any help?

  • @carlaspivey8191
    @carlaspivey8191 4 месяца назад +1

    I'm yet to find a code that works.

  • @divasstone4200
    @divasstone4200 2 года назад +6

    It doesn't work outside of presentation mode....pointless