vote up 0 vote down star

Hi,

This is a quick (and probably stupid) question but if I have two consts string how can I build the next const from the previous const i.e.

Const PATH_SRC = "some path\"
Const PATH_SRC_FILES = PATH_SRC & "files\"

I know you may say a const is a const but looking for a quick solution. This is being performed in a vbs script.

Thanks

flag

A constant is a constant because it does not change, if you want it to change it's a variable. – Tester101 Apr 30 at 13:43
Removed 'vb6' tag since question specifically asks about VBScript. – Mike Spross May 1 at 2:48

1 Answer

vote up 6 vote down check

If I recall correctly from my VBS days; you can't do that in VBS. A constant can only be set to a literal.

link|flag
Correct, and you can't do it in VB6 either. (For some reason the question is tagged VBScript and VB6.) – MarkJ Apr 30 at 13:33
@MarkJ: Not anymore :-) – Mike Spross May 1 at 2:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.