Quick question - I'm used to mainly coding in VBA for Excel and I like to assign variables to specific parameters when I make function calls (the ':=' ), such as:
Just my own personal discipline I guess. Well I'm trying to whip out a quick vbscript to copy an excel add-in file and auto-install it into excel for my less technically inclined users. I'm getting an error when I try to make this specific assignment using the ':='. Can you even do this in vbscript or is there another way to speicify parameters?
-Joshua
If it's not broken, it doesn't have enough parts yet.
Code:
MsgBox Prompt[highlight]:=[/highlight]strMsg, Buttons[highlight]:=[/highlight]lngButtons, Title[highlight]:=[/highlight]strProgramTitle
Just my own personal discipline I guess. Well I'm trying to whip out a quick vbscript to copy an excel add-in file and auto-install it into excel for my less technically inclined users. I'm getting an error when I try to make this specific assignment using the ':='. Can you even do this in vbscript or is there another way to speicify parameters?
-Joshua
If it's not broken, it doesn't have enough parts yet.