3

Where can I find a complete list of the intrinsic constants in VBScript (like vbCrLf and vbTab)?

JoelFan
  • 37,465
  • 35
  • 132
  • 205

2 Answers2

2

The official and most up-to-date reference is in the MSDN library:

Constants (VBScript)

Helen
  • 87,344
  • 17
  • 243
  • 314
1

Is this what you need?

John
  • 15,990
  • 10
  • 70
  • 110
  • Yes, thanks! But I don't understand what is meant by "For VBScript, you must explicitly declare these constants in your code." Is there a code example for how to do that? – JoelFan Jun 02 '10 at 02:08
  • @JoelFan this means you have to declare them on your code before use. Some people usually make an include with this variables to make it reusable. The most common is the ADODB.inc, that you can find on a Google search and beter understand what I'm saing. – Ricardo Souza Jun 10 '12 at 16:33