The code below should copy strNumber's value into clipboard, but it will copy the "strNumber" string into clipboard and not its value, how to fix it
Dim strNumber, SH
Set SH = WScript.CreateObject("WScript.Shell")
strNumber =Inputbox("Number","Input Required")
SH.Run ".\ClipboardCopy.exe set strNumber"
Set SH = Nothing
SH.Run ".\ClipboardCopy.exe set " & strNumber