Health & Medical sports & Exercise

How to Make an ASCII String in Vbscript

    • 1). Open vbScript in your preferred editor.

    • 2). Type "Asc(STRING)" (without the surrounding quotes, replacing "STRING" with the argument you want to enter). This code returns the ASCII code associated with that string.

    • 3). Type "Chr(CHARCODE)" (without the surrounding quotes, replacing "CHARCODE" with the ASCII you want to use). The ASCII code you want to generate a response from will appear with this code.

Leave a reply