x BlueRobot
Closed by request
- Local time
- 4:47 AM
- Messages
- 6,784
My Computer
- Computer type
- Laptop

Opt ("TrayIconDebug", 1)
While 1
$var = InputBox("Converter", "Type one character. Click on OK to convert." & _
@CR & @CR & "(Or just press Enter to convert.)")
If @error = 1 Then Exit
If $var = "" Then ContinueLoop
InputBox("Converter", $var & " as DEC ASCIIcode." & _
@CR & @CR & "(Ready to copy or cut and paste.)" & _
@CR & @CR & "Press Enter to continue.", Asc($var))
If @error = 1 Then Exit
WEnd


ASCII Converter V2 - Added Features:
- Added UI
- Added support for a-z, 0-9 and special characters such ? etc.
- Note: \ is added as a label on the UI, since the compiler gives an error that the \ is a newline character.
