vba - Visual Basic: Multiplying strings/SendKeys? -
ok, i've got this:
sendkeys.send("blah" + "{bs}")
and want backspace "{bs}" multiple times, eg have variable multiply "{bs}" have backspace amount of times, how go doing this?
i know possible in python by: "string" * variable
, not sure how in vba.
sending same key several times, try appending number inside brackets
application.sendkeys "{bs 6}
Comments
Post a Comment