I have a little problem using unicode functions (unicode.em)
I want to use Polish language (POL code). But the function doesn`t show anything.
test code:
var txt:= CAscZ("ąćę");
SendSysMessageUC(who, CAscZ(txt), "POL");
Unicode
You use the CAscZ function two times. Perhaps that's the problem.
Try this one:
Try this one:
Code: Select all
var txt:= CAscZ("ąćę");
SendSysMessageUC(who, txt, "POL", 3, 32);