Executando um script do VBA no Outlook 2013

1

Se eu tiver um bom script VBA para organizar uma lista de mala direta em um convite de reunião, como aplicá-lo no Outlook 2013? Existe um lugar para colar isso, e talvez depois de colá-lo, ele seja executado automaticamente?

Além disso, eu teria que colá-lo em todos os convites que eu criei, ou será essa a condição padrão das minhas listas de discussão?

    
por Fa Ndah 10.08.2017 / 18:27

1 resposta

1

Existe um lugar para colar isso?

When in Outlook, press Alt+F11. That's where you can develop your macros/functions. You will probably have to modify your code before you run it though. An alternative to the hotkey is enabling the Developer tab and clicking 'Visual Basic'. You can read about that here.

Ele será executado automaticamente?

It depends on your implementation. I can think of three on the top of my head:

  1. You can create a rule to run a script on specific actions.

  2. You can run it on a schedule

  3. You can run it when Outlook starts up.

Since you are using Outlook 2013 you may need to modify the registry to allow scripts to be run from a rule.

Eu teria que colar isso em todos os convites que eu criar

Nope. When a macro is created, it stays created even when you close out of Outlook (unless you don't save it!!).

    
por 10.08.2017 / 21:06