Modify

Opened 11 years ago

Closed 11 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)

Change History (1)

comment:1 Changed 11 years ago by guinness

  • Resolution set to No Bug
  • Status changed from new to closed

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

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The ticket will remain with no owner.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.