I'm Vietnamese. I have "Unikey" - a software to type Vietnamese language to anywhere I can type in window 10.
Example: I type: aa it's show â, type as it's show á,... aas --> ấ, eex --> ễ. dd --> đ.....
I can type Vietnamese language like this to notepad, word, excel, window, folder name, web browser, ... But I can't type like this to Input or Edit in autoit Gui.
How I can type Vietnamese language like this to Input or Edit in autoit Gui. I choosed UTF-8 with Bom but I just can type Vietnamese language in Scite Script Editor, I can't type Vietnamese language to Input or Edit in autoit Gui. Please help...
#include <GUIConstantsEx.au3>
$gui=GUICreate('new',420,260,430,200)
$input=GUICtrlCreateInput('',10,10,400,20)
$edit=GUICtrlCreateEdit('',10,40,400,200)
GUISetState()
Do
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
Until False