Why, when i run this code, i have several "?" in the window debugger.

Code: Select all
For n = 32 To 1000
Debug Chr(n)
Next
How can i do, for see the chinese, russian, arabic characters ?
Thanks for your answer.
Code: Select all
For n = 32 To 1000
Debug Chr(n)
Next
The currently loaded ASCII character set (and I'm sure someone will correct me) only contains 255 characters at any one time so you are trying to debug non-existent characters above 255.Why, when i run this code, i have several "?" in the window debugger.
Code: Select all
For n = 32 To 1000 Debug Chr(n) Next
I believe that you have to have the relevant language support loaded in the Operating System (for all languages you wish to access) that you use and then load the appropriate font set containing those characters used to access them (but once again I could be wrong)How can i do, for see the chinese, russian, arabic characters ?
debug window doesnt support unicodeKwaï chang caïne wrote: Why, when i run this code, i have several "?" in the window debugger.
Code: Select all
If FileSize("c:\EssaiUnicode.txt") <> - 1
DeleteFile("c:\EssaiUnicode.txt")
EndIf
OpenFile(1,"c:\EssaiUnicode.txt")
For n = 32 To 65000
WriteStringN(1, Str(n) + "=" + Chr(n))
Next
CloseFile(1)
MessageRequester("Extraction caracteres UNICODE", "Extraction des caracteres UNICODES terminée")
Code: Select all
64007=輻
64008=行
64009=降
64010=見
64011=廓
64012=兀
64013=嗀
64014=﨎
64015=﨏
64016=塚
64017=﨑
64018=晴
64019=﨓
64020=﨔
64021=凞
64022=猪
64023=益
64024=礼
64025=神
64026=祥
64027=福
64028=靖
64029=精
64030=羽
64031=﨟
64032=蘒
64033=﨡
64034=諸
64035=﨣
64036=﨤
64037=逸
64038=都
64039=﨧
64040=﨨
Code: Select all
41312=ꅠ
41313=ꅡ
41314=ꅢ
41315=ꅣ
41316=ꅤ
41317=ꅥ
41318=ꅦ
41319=ꅧ
41320=ꅨ
41321=ꅩ
41322=ꅪ
41323=ꅫ
41324=ꅬ
41325=ꅭ
41326=ꅮ
41327=ꅯ
41328=ꅰ
41329=ꅱ
41330=ꅲ
41331=ꅳ
41332=ꅴ
Code: Select all
57704=
57705=
57706=
57707=
57708=
57709=
57710=
57711=
57712=
57713=
57714=
57715=
57716=
57717=
57718=
57719=
57720=
57721=
57722=
57723=
57724=
57725=
57726=
57727=
57728=
Code: Select all
Print_OpenPrinter()
If Print_EnumFonts(#DEFAULT_CHARSET,"Arial")
count=Print_CountFonts()
If count>0
For i=0 To count-1
Debug Str(Print_EnumFontID(i))+":"+Print_EnumFontName(i)+" / "+Print_EnumFontStyle(i)+" / "+Print_EnumFontScript(i)
Next
EndIf
Debug "Found "+Str(count)+" fonts with #DEFAULT_CHARSET"
EndIf
Code: Select all
1:Arial / Standard / Westlich
2:Arial / Standard / Hebräisch
3:Arial / Standard / Arabisch
4:Arial / Standard / Griechisch
5:Arial / Standard / Türkisch
6:Arial / Standard / Baltisch
7:Arial / Standard / Mitteleuropäisch
8:Arial / Standard / Kyrillisch
9:Arial / Standard / Vietnamesisch
10:Arial Fett / Fett / Westlich
11:Arial Fett / Fett / Hebräisch
12:Arial Fett / Fett / Arabisch
13:Arial Fett / Fett / Griechisch
14:Arial Fett / Fett / Türkisch
15:Arial Fett / Fett / Baltisch
16:Arial Fett / Fett / Mitteleuropäisch
17:Arial Fett / Fett / Kyrillisch
18:Arial Fett / Fett / Vietnamesisch
19:Arial Fett Kursiv / Fett Kursiv / Westlich
20:Arial Fett Kursiv / Fett Kursiv / Hebräisch
21:Arial Fett Kursiv / Fett Kursiv / Griechisch
22:Arial Fett Kursiv / Fett Kursiv / Türkisch
23:Arial Fett Kursiv / Fett Kursiv / Baltisch
24:Arial Fett Kursiv / Fett Kursiv / Mitteleuropäisch
25:Arial Fett Kursiv / Fett Kursiv / Kyrillisch
26:Arial Fett Kursiv / Fett Kursiv / Vietnamesisch
27:Arial Kursiv / Kursiv / Westlich
28:Arial Kursiv / Kursiv / Hebräisch
29:Arial Kursiv / Kursiv / Griechisch
30:Arial Kursiv / Kursiv / Türkisch
31:Arial Kursiv / Kursiv / Baltisch
32:Arial Kursiv / Kursiv / Mitteleuropäisch
33:Arial Kursiv / Kursiv / Kyrillisch
34:Arial Kursiv / Kursiv / Vietnamesisch
35:Arial / Standard / Westlich
36:Arial / Standard / Hebräisch
37:Arial / Standard / Arabisch
38:Arial / Standard / Griechisch
39:Arial / Standard / Türkisch
40:Arial / Standard / Baltisch
41:Arial / Standard / Mitteleuropäisch
42:Arial / Standard / Kyrillisch
43:Arial / Standard / Vietnamesisch
44:Arial / Standard / Westlich
45:Arial / Standard / Hebräisch
46:Arial / Standard / Arabisch
47:Arial / Standard / Griechisch
48:Arial / Standard / Türkisch
49:Arial / Standard / Baltisch
50:Arial / Standard / Mitteleuropäisch
51:Arial / Standard / Kyrillisch
52:Arial / Standard / Vietnamesisch
Found 52 fonts with #DEFAULT_CHARSET