Modify ↓
Opened 13 years ago
Closed 13 years ago
#2345 closed Feature Request (No Bug)
Set font in _ArrayDisplay to allow displaying of unicode characters
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | Standard UDFs | |
| Version: | Severity: | None | |
| Keywords: | Cc: |
Description
This simple code shows that _ArrayDisplay() does not correctly display Unicode characters.
#include <Array.au3> Global $array[4] = [ChrW(9824), ChrW(9830), ChrW(9829), ChrW(9827)] _ArrayDisplay($array)
Adding one of these lines to the Arraydisplay() function just before the listview is filled will allow the characters to be displayed correctly. These are all recommended standard windows fonts that are available in all versions of Windows.
GUICtrlSetFont($hListView, Default, Default, Default, "Arial") GUICtrlSetFont($hListView, Default, Default, Default, "Courier New") GUICtrlSetFont($hListView, Default, Default, Default, "Times New Roman")
Attachments (0)
Note:
See TracTickets
for help on using tickets.

It works for me in the latest beta v3.3.9.4.