Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Specifically on that topic. I don't know why you would do that, if you mean the way to make use of holding down ALT while entering a unicode codepoint, that will result in unicode characters that don't at all match an ansi codepage, neither the wrong nor the right one. Googling Polish keyboard layout I find this: http://kbdlayout.info/KBDPL/I use right ALT + letter
CREATE CURSOR c_polish CODEPAGE=1250 (field1 C(50), ...)
&& do your field binding to the control(s)
SELECT field1, ... FROM textsource INTO CURSOR c_temp
SELECT c_polish
ZAP IN c_polish && remove any from a previous COPY FROM...
COPY FROM DBF('c_temp')
USE IN SELECT('c_temp')
Since that FontCharSet also works in Text- and Editboxes, you can enter polish characters on the fly. At least if you know the threeletter-AltCode (i.e.the Position in the 255 char Ansi table) or if you have the polish keyboard driver activated. Windows always uses Unicode, but converts the entered 2Byte chars to the corresponding 1Byte char if possible. That mappingtable is set to the current activated codepage for our NonUnicodeApp. That's done either by that global Windows setting, withe the Codepage setting in config.fpw or with our FontCharSet on a PerControl base.Displaying something is not the only problem, though. The input is driven by the system locale, no matter if you set other keyboards. Switching to POL 214 I got ³ (superscript 3) instead of ł, for example. But in Unicode aware applications like Notepad++ the keyboard layout worked, as the system locale codepage for non Unicode application does, well, only apply for non Unicode applications, and I wonder how many other programming platforms even still create ANSI executables.