Search found 636 matches

by Scott Klement
Sat Mar 23, 2024 5:57 am
Forum: HSSFR4
Topic: HSSF how can format cell with currency "$"
Replies: 12
Views: 107

Re: HSSF how can format cell with currency "$"

I don't know what you mean by "$ or euro". But when I've done euro, it's been like this: [$€-x-euro2] #,##0.00 For dollar sign it'd be like this: $#,##0.00 Note that you can go into Excel and ask it to format a cell the way you want... then look under "custom" to see what format ...
by Scott Klement
Thu Mar 14, 2024 10:52 pm
Forum: General
Topic: Trouble exporting text data to pc file in pure ascii (CCSID issue?)
Replies: 1
Views: 95

Re: Trouble exporting text data to pc file in pure ascii (CCSID issue?)

Which ASCII is the "pure" one? The term ASCII refers to many, many different character encodings. It's a whole category, not a specific one. And why would you still be using ASCII in 2024? I know of just about nothing that still uses ASCII... it's all been replaced by Unicode. Are you cert...
by Scott Klement
Fri Mar 08, 2024 7:59 am
Forum: HSSFR4
Topic: Where can I find SK's Articles formerly on System iNetwork?
Replies: 3
Views: 113

Re: Where can I find SK's Articles formerly on System iNetwork?

They are the property of Penton Media, so I can't legally repost them. Penton has chosen to take them offline, which is out of my control. You can try to find them on Archive.org, as you mentioned... this has worked for most people.
by Scott Klement
Thu Mar 07, 2024 11:08 pm
Forum: General
Topic: Configuration Kyocera MA 3005 (color)
Replies: 1
Views: 83

Re: Configuration Kyocera MA 3005 (color)

CPF3397 text says "See the job log of the writer". Did you do that? What did you learn? Last time I researched it, Host Print Transform did not support color overlays. Did that change? (This wouldn't cause the writer to end, but if it worked, the overlay would be black & white) You ha...
by Scott Klement
Thu Mar 07, 2024 6:44 am
Forum: HTTPAPI
Topic: HTTPAPI
Replies: 19
Views: 744

Re: HTTPAPI

If you don't agree, then I will be forced to go with GETURI (acommodates OAuth token key). No choice .. HTTPAPI does NOT ! This is factually incorrect. HTTPAPI and GETURI do exactly the same thing. If my choice is between writing the code for you for free vs. having you purchase Brad's product, and...
by Scott Klement
Thu Mar 07, 2024 6:26 am
Forum: RPG IV
Topic: I have a requirement to produce PDFs with large print and I am having issues, need help
Replies: 4
Views: 166

Re: I have a requirement to produce PDFs with large print and I am having issues, need help

I've used PDFLIB -- they make it for all platforms, including IBM i, and it works very nicely. They provide documentation of how to make PDFs natively from ILE languages such as RPG. So instead of doing weird things like creating an AFP, converting it to TIFF and converting it to PDF, you can just c...
by Scott Klement
Thu Mar 07, 2024 6:16 am
Forum: General
Topic: Batch CL for sFTP with Password Authentication
Replies: 5
Views: 122

Re: Batch CL for sFTP with Password Authentication

The $ character has a special meaning in a shell script, so to put a $ in your SSH_ASKPASS script you would need to escape it properly.
by Scott Klement
Wed Mar 06, 2024 6:18 am
Forum: YAJL-ILE
Topic: DATA-GEN \n and \"
Replies: 6
Views: 225

Re: DATA-GEN \n and \"

I was thinking about this, and it'd probably be helpful if I explained my analysis in more detail. The reason you'd get a result like the one that simonerotax posted is because you had a program like this one: ctl-opt option(*srcstmt); dcl-s theResult varchar(1000); dcl-c LF x'25'; dcl-ds data quali...
by Scott Klement
Wed Mar 06, 2024 4:59 am
Forum: YAJL-ILE
Topic: DATA-GEN \n and \"
Replies: 6
Views: 225

Re: DATA-GEN \n and \"

I don't see what this has to do with code pages or beautify. This appears to be completely normal and expected data. You are embedding a JSON document inside of another JSON document. When you do that, the JSON document has to be treated as a string -- so any special characters must be escaped. This...
by Scott Klement
Wed Mar 06, 2024 4:55 am
Forum: General
Topic: Batch CL for sFTP with Password Authentication
Replies: 5
Views: 122

Re: Batch CL for sFTP with Password Authentication

On Unix systems, "tty" (teletype) is synonymous with "terminal". So what this error message is telling you is that it's trying to read the password from the terminal -- and it can't because there is no terminal associated with your session. This tells me that, for some reaon, SSH...