I am using a few custom commands in AutoCAD that use the SendKeys
command. Recently this started to turn on and off my Caps Lock and Num Lock and is somewhat unpredictable so I am looking for an alternative to the SendKeys
command.
What can I use that would have the same result?
The code allows me to copy an object and paste it multiple times.
Sub CopyMultiple()
SendKeys "MULTIPLE" & Chr(13) & "COPY" & Chr(13)
End Sub