How to send several HotKeys

A simple way to repeat any string is a VB expression like this:

Dim result = String.Join(“”, Enumerable.Repeat(“abc”, 10))

You can also specify the separator.

Adrian.

8 Likes