PxPlus User Forum

Twitter Twitter Twitter

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 - JR

Pages: [1]
1
Hello,
Webster+ seems to be a good toolkit to develop full cloud application using PxPlus.
What is the licence policy ? If we have 80 PxPlus licence, is 80 the maximum number of surfer able to run pxplus program simultaneously ?
Regards

2
Programming / Re: CLEAR vs CLEAR Composite string
« on: February 12, 2021, 12:32:53 AM »
->list
0010 REM
0020 BEGIN
0030 FOR I=1 TO 10
0040 CLEAR T${ALL}
0050 NEXT I
->run
0050 NEXT I
Error #28: No corresponding FOR for NEXT
Current program is /tmp/pvx/poub, line 50

3
Programming / Re: CLEAR vs CLEAR Composite string
« on: February 11, 2021, 12:18:16 PM »
Hi,

I ran into the same conclusion.
CLEAR MORDER${all}
clear the FOR stack ?

To avoid this, is it better to use DIM MORDER$ ?

4
Programming / empty Associative Array
« on: February 08, 2021, 11:14:53 AM »
0010 BEGIN                                                                                                                                                                                                                 
0020 DIM LOAD T${ALL}="[]"                                                                                                                                                                                                 
0030 FOR I$ INDEX T${ALL}                                                                                                                                                                                                   
0040 PRINT I$                                                                                                                                                                                                               
0050 NEXT I$                                                                                                                                                                                                               
->run                                                                                                                                                                                                                       


Why zero ??

5
Programming / timeout call
« on: February 03, 2021, 05:45:41 AM »
Hi,
Any idea to allow for a maximum allocated time to a call ?
like :
CALL "prgname",param,MAX=10s

something similar to bash command :
timeout 10s prgname param

6
Language / Changing Record_Size on the fly ?
« on: May 27, 2020, 12:22:55 PM »
Hi,
ADD INDEX is useful to change file structure on the fly.
Do you have similar command to change "Maximum Record size" on the fly ?
I mean : fin(filespec,"Record_Size") parameter.
Regards

7
Programming / Re: Linux Launching another pxplus daemon task
« on: May 21, 2020, 04:04:27 AM »
Hi,
Thanks. Unfortunately on my Ubuntu, adding nohup or setsid is no help. Logging out kills the child anyway for unknown reason.
I finally ended getting around the problem with "at" unix command.

A=SYS("at now -f /tmp/pvx/cmd")

and the cmd file containing :

cd $home;export TERM=IO;/home/pxplus/pxplus ATHENA >/dev/null

My problem is solved.

8
Programming / Linux Launching another pxplus daemon task
« on: May 20, 2020, 11:11:23 AM »
Hi,
When launching my pxplus ATHENA daemon with command :
A=SYS("cd $home;export TERM=IO;"+ARG(0)+" ATHENA >/dev/null 2>/dev/null &")
and if I exit the current task, the ATHENA child is stopped.

But if i do it manually :
A=SYS("bash")
and
me@server:/tmp/pvx$ cd $home;export TERM=IO;/home/pxplus/pxplus ATHENA >/dev/null 2>/dev/null &
the ATHENA daemon still runs when I exit current ubuntu session.
I do not want the daemon to stop.
Any idea ?

9
Registration and Setup / excel : Feature not supported
« on: November 06, 2019, 12:24:24 PM »
Hello,

->x=new("*obj/excel")                                                                                                                                                                       
Error #99: Feature not supported

We use Ubuntu with 1500-664
Do we need to install something or buy an extra package ?

Regards

Pages: [1]