Jun 24, 2007 #1 tester321 Programmer Mar 13, 2007 150 CA Hi i'm trying to find a list on the net, if space is chr(32) whats an underscore? Thanks
Jun 24, 2007 #2 dm4ever Technical User Jul 3, 2006 991 US WScript.Echo Asc("_") WScript.Echo Chr(95) -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid Upvote 0 Downvote
WScript.Echo Asc("_") WScript.Echo Chr(95) -------------------------------------------------------------------------------- dm4ever My philosophy: K.I.S.S - Keep It Simple Stupid
Jun 25, 2007 #3 monksnake Programmer Oct 14, 2005 2,145 US You can code one yourself, but I just reference this when I need to. http://www.nightwing.com.au/Webdesign/symbols.html <. Upvote 0 Downvote
You can code one yourself, but I just reference this when I need to. http://www.nightwing.com.au/Webdesign/symbols.html <.
Jun 25, 2007 #4 mrmovie Technical User Oct 2, 2002 3,094 GB For i = 2 To 100 Msgbox Chr(i) Next Upvote 0 Downvote