Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Per E. Johannessen

Pages: [1] 2 3 ... 17
1
Programming / Re: Start program from VX-Rexx
« on: March 27, 2024, 11:24:55 pm »
Thanks to Dave Yeo, who built version 4.01, the new pdftotext now works from VX-Rexx as well.

2
Programming / Re: Xpdf v. 4.01
« on: March 27, 2024, 10:37:14 pm »
Thanks a lot, Dave.

I've only tried pdftotext so far. This version also seems to work fine from VX-Rexx.

3
Programming / Xpdf v. 4.01
« on: March 27, 2024, 08:04:21 pm »
Noticed this post;

https://www.os2world.com/forum/index.php?topic=2162.0

Does anymone know if the v. 4.01 cmdline tools for OS/2 are available anywhere?

4
Programming / Re: Start program from VX-Rexx
« on: March 25, 2024, 04:14:54 pm »
Now I've also tested running the command below from DBExpert;

address cmd "start /C /min P:\test\pdftotext.exe source.PDF input.txt"

At one point it actually worked and produced a nice input.txt, actually the best so far since it
handled the special character 'ΓΈ' correctly.
Funny thing is that it worked only one time.
Have tried lots of times and don't even get any error messages.

5
Programming / Re: Start program from VX-Rexx
« on: March 24, 2024, 12:23:54 am »
When running a cmd-file with only the line below it works ok.
address cmd "start /C /min P:\test\pdftotext.exe source.PDF input.txt"

I've tested a few other programs from VX-Rexx using "address cmd" and they work.

pdftotext.exe is in the same directory as the VX-Rexx project and the cmd-file.

I've also copied the cmd-file and pdftotext.exe other directiories and it still works so I assume it
does not depend on any other dll.

6
Programming / Re: Start program from VX-Rexx
« on: March 23, 2024, 02:48:49 pm »
Thanks, but I can't get any of the suggestions to work.

ADDRESS CMD "P:\test\pdftotext.exe source.PDF input.txt"
Results in "private_alloc failed, error code = 0x00000137

'@start cmd /c start "pdftotext" /b/k '||your_program
Results in "invalid expression"

In another project this is working fine:
address cmd.exe "start /C /min d:\gs\GS9.15\BIN\gsos2


7
Programming / Start program from VX-Rexx
« on: March 22, 2024, 09:54:21 pm »
Hi,

I have a cmd file with this line;

address cmd.exe "start /C /min P:\test\pdftotext.exe source.PDF input.txt"

and it works fine (converting the pdf to txt).

Trying to run the same line in VX-Rexx is not working.

Got some good tips in the below thread:

https://www.os2world.com/forum/index.php/topic,2932.msg32804.html#msg32804

I've tried any "combination" I could think of but no success.
At one point I got the error message "private_alloc failed, error code = 0x00000137".

Anyone who knows how to get it to work in VX-Rexx?

8
Applications / Re: PMMail
« on: February 24, 2024, 12:59:21 am »
Still works here, also the link Martin provided.

You can sponsor through this link:
https://www.arcanoae.com/shop/voice-sponsoring/

9
Applications / Re: PMMail
« on: February 23, 2024, 11:02:59 pm »
http://www.os2voice.org/ seems to load fine now, (Firefox 45.9.0).

10
Setup & Installation / Re: DB2 v. 6.1 / Java
« on: February 23, 2024, 05:08:34 pm »
Well, I downloaded and installed 1.1.8 and DB2 Control Center works.
Problem now is that DB2 Administration Server will not start, SQLSTATE=57019.

Alex, you're right, the runtime was already installed in x:\OS2\JRE\Java11  ???

Neil, when trying to create a database I can select "local" and it is not asking for any protocol.
(Since the Adm Server won't start I'm unable to complete the steps for creating a new database,
will keep File and Print in mind.)

11
Setup & Installation / Re: DB2 v. 6.1 / Java
« on: February 22, 2024, 11:23:45 pm »
Thanks, Ivan, but I just got Java 1.4.2 installed.
No success with db2cc.cmd;

/* JRE [options] CC "[-h {location of db2jd}] [db2jd port number]" */
'jre -mx128m -cp 'db2path'\cc;'db2path'\cc\db2cc.jar;'db2path'\java\swingall.jar;'db2path'\java\db2java.zip;'db2path'\cc\db2plug.zip CC -nojit "6790 %1"'

I've replaced "jre" in the above cmd with "java" and get some "NullPointerError"
Wonder if I have to try with an even older java version, like 1.1.8?

Thoughts are welcome.

12
Setup & Installation / DB2 v. 6.1 / Java
« on: February 22, 2024, 04:55:23 pm »
It seems like DB2 requires an older Java version than the OpenJDK that comes with ArcaOS.
The DB2 java apps works with jre.exe and not java.exe.
Tried to install Java 1.4 but got some error.

Is there a work around to make DB2 work with OpenJDK, or any other solution?

13
Programming / Re: SQL running total
« on: February 19, 2024, 08:00:28 pm »
Thanks Roberto, but unfortunately it returns no values.
The query I mentioned earlier is run from VX-Rexx and Intersolv 2.11, can't make it work with DBExpert.
I'm trying to create a column that holds the sequence numbers for the records, like the image below:


14
Programming / Re: SQL running total
« on: February 18, 2024, 06:51:40 pm »
Some more testing ....

select a.rowid, a.accno, a.bkgdate, a.amount, (select sum(b.amount) from finance b where b.rowid <= a.rowid and a.accno = b.accno group by b.accno) from finance a order by a.accno



However, I also need "order by BKGDATE" but that will change the running total column and make it useless.

Have an idea about running an update query with the necessary "group by" and "order by" and that it inserts record number,
incremented by 1. in a new column.
Ideas anoyone?
 

15
Programming / Re: SQL running total
« on: February 05, 2024, 07:47:25 pm »
Hi, Doug, sent you a pm.

Pages: [1] 2 3 ... 17