How are hex literals specified in VBScript?

Questions by Remasri   answers by Remasri

Showing Answers 1 - 3 of 3 Answers

The hex literals are specified using"Hex()" method in vb script.

Example:
a = 25
Wscript.Echo Hex(a)
The output of this script is 19, which just happens to be the hex equivalent of 25.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions