Suppose I want to pass variables as my parameters, is it possible?
Example:
newva = 10
obj = newobj.Run("%comspec% /c ruby E:\rubyfile.rb newva > D:\newdoc.txt", 1, true)
Is this possible?
Suppose I want to pass variables as my parameters, is it possible?
Example:
newva = 10
obj = newobj.Run("%comspec% /c ruby E:\rubyfile.rb newva > D:\newdoc.txt", 1, true)
Is this possible?
Concatenate the variable's value into the command line:
obj = newobj.Run("%comspec% /c ruby E:\rubyfile.rb " & newva & " > D:\newdoc.txt", 1, true)
(Still using the bad variable names?)