I'm not on Windows 11 anywhere, so might only be of limited help, but:RalfR wrote: Tue Mar 04, 2025 1:37 pmI haven't set anything to the "ini" for printing. DLIST gives par as the default device but when I make "OPEN#3,par" I get ERR.NF. When I DLIST to prt I get ERR.BP.dilwyn wrote: Tue Mar 04, 2025 12:28 pmWhen I try to print to PRT from sQLux, a window briefly pops up and quickly vanishes before I can read what's in it. Nothing shown as "waiting" in the Windows printer queues.
Must look more deeply in the manual.
sqlux is using the Unix line printer daemon on Linux. There is an equivalent on Windows, called the "LPD Service", which is an optional component to install. Go to the system settings/optional features/, search for "Print and Document Services" and install that component (all 3 parts). You might need to go to the "Services" (start "services.msc" from a CMD window), find the service "LPD Service" and verify its start behaviour is set to "automatic".
Once that is done, you should be able to print a file using the command (from a cmd window) "lpr <file>" - check this with a short file, it must work for sqlux printing to work. (That's more or less exactly what sqlux does when printing, the window that pops up and immediately vanishes is probably doing exactly that and closes again because it can't find the lpr service) - This will print to the default printer, if that is not what you like, add an " -P<myprinter>" with the proper printer name.
Your sqlux.ini file should contain the line
PRINT = lpr
(with the optional " -P<printer>") for printing to work. Not sure if you need to add the ".exe" or not. This is how printing on uqlx used to work. If that has not changed, I guess it still does. uqlx opened a pipe to lpr and sent the characters along.