I have a problem with my pseudocode:
Declare Integer p1
Declare Integer p2
Declare Integer p3
For p1 = 1 To 3
For p2 = 65 To 66
For p3 = 6 To 8
Display p1, p2, p3
End For
End For
End For
This would display 18 combinations. But, I want to convert and display the character code (in this case 65 and 66) to the character. So instead of "1658", I want it to be "1A8". How can I fix this? I've tried putting ToChar with p2 (Display p1, p2, ToChar(65), ToChar(66), p3), but no avail. Please help!
Thanks!