Posts: 726
Threads: 99
Joined: Mar 2018
04-27-2019, 10:49 PM
(This post was last modified: 04-27-2019, 10:51 PM by win.)
The file name in the list box is garbled. Please see the GIF demo below.
File name Example:
你好
中国
Code source link:
Http://www.quickmacros.com/forum/showthr...61#pid1461
Posts: 12,071
Threads: 140
Joined: Dec 2002
Posts: 726
Threads: 99
Joined: Mar 2018
04-28-2019, 04:32 AM
(This post was last modified: 04-28-2019, 04:32 AM by win.)
Below the GIF image, the source code
luan.qml
Posts: 12,071
Threads: 140
Joined: Dec 2002
04-28-2019, 04:35 PM
(This post was last modified: 04-28-2019, 04:39 PM by Gintaras.)
In your dialog replace
SendMessage hlb LB_ADDSTRING 0 d.FileName
with
SendMessageW hlb LB_ADDSTRING 0 @d.FileName
or
LB_Add hlb d.FileName
Posts: 726
Threads: 99
Joined: Mar 2018
Perfect solution , thanks Gintaras