Is there any function to convert numeric math to string in vb script?eg: it should convert 7 to july 10 to october

Showing Answers 1 - 4 of 4 Answers

Sudip Barman

  • Sep 14th, 2006
 

If u use

MonthName(Month as Integer)

This function then it returns the the string value of Month like

MonthName(4)

return "April"

 

MonthName(8)

return "August"

Like that

Buy

 

  Was this answer useful?  Yes

chandu_swe

  • Aug 18th, 2007
 

itoa function.
If we use it we change numeric math to string.

  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