to print a letter of alphabet I use an array
sample for ascii code 65 ( A) I use
Function code65()
Local aCarattere
A1:= "-...-"
A2:= ".---."
A3:= ".---."
A4:= "....."
A5:= ".---."
A6:= ".---."
A7:= ".---."
A8:= "-----"
aCarattere := {A1,A2,A3,A4,A5,A6,A7,A8}
return aCarattere
and this for all ascii table ... but is there a speed method to have all ascii table ?