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 - Cees Trip

Pages: [1]
1
Programming / Re: Flash a Message
« on: January 26, 2024, 03:58:37 AM »
I don't know if this helps but I used listed code in several programs to draw attention to mandatory fields:

00010  LET ML=100
00011  MULTI_LINE ML,@(20,10,32,6),FNT="Arial,-13,B"
00020  LET TXT_OLD$="** this is the old text ** this is the old text ** this is the old text **"
00030  MULTI_LINE WRITE ML,TXT_OLD$
00040 !
00041 OBTAIN:
00042  OBTAIN *
00050 !
00060  IF CTL=1 \
        THEN GOSUB TXT_MSG0
00061  IF CTL=4 \
        THEN GOTO END1
00070  GOTO OBTAIN
00071 TXT_MSG0:
00080  LET TXT_OLD$=ML'VALUE$ ! save existing text
00081  LET BC_OLD$=ML'BACKCOLOR$
00090  LET TMP0=0,TMP1=3,TXT_MSG$="example text example text example text example text example text example text"
00110 TXT_MSG1:
00111  LET ML'VALUE$=TXT_MSG$,ML'BACKCOLOR$="RGB: 255 75 43" ! write message
00120  WAIT 1
00121  LET ML'BACKCOLOR$="RGB: 255 255 0",ML'VALUE$=TXT_MSG$
00122  WAIT 1
00130  LET TMP0+=1
00140  IF TMP0<TMP1 \
        THEN GOTO TXT_MSG1
00150  LET ML'VALUE$=TXT_OLD$,ML'BACKCOLOR$=BC_OLD$ ! write back original text and backcolor
00160  RETURN
00170 END1:
00180  END

2
Nomads / Re: how to disable the command line utility in Nomads
« on: March 05, 2021, 08:58:51 AM »
Thanks Chris and Dave. This works.

3
Nomads / how to disable the command line utility in Nomads
« on: March 05, 2021, 05:59:46 AM »
L.S.

Does somebody knows how how to disable the command line utility in Nomads. Pressing F5 brings up the utility in an Nomads panel. See also attachment Clipboard01.jpg.

Regards,
Cees Trip

4
Programming / Re: Error #200
« on: November 20, 2020, 04:46:28 AM »
Hello Mike,

Thanks. I will look into it. I'm running on a Linux system.

Err 200 is indeed "Cannot contact host server". I talked about setting up a test. Yesterday, Nov.19th, this wasn't necessary. From my location, Zwolle the Netherlands, I couldn't connect to pvxplus.com (forum, manual etc.). So 6 workstations in our Wharehouse in error. Talking about a test setup. This for me another warning not to use external services wich can not be bridged when falling in error. The error took place in /usr/px125/lib/_plus/web/request  on line 86 "OPEN (HFN,ERR=NO_HOST,TIM=15........etc".

Cees.

5
Programming / Re: Error #200
« on: November 18, 2020, 03:31:51 AM »
Thanks Devon and Mike,

Just had two new errors before reading your comments. These where simply solved by entering the RUN command. Next time I will look at MSG(200). When I setup a test then it works all the time. The problem is also that this function is only active for one of our customers. They want their Order number printed in a barcode on our packing slips. And due to space issues a qr code was the most efficient. I just hadn't room for a 2d barcode.
I will try to emulate the error again by setting up a test on the different machines in our Wharehouse. I will let you know what the output is from msg(200).     

6
Programming / Error #200
« on: November 12, 2020, 03:15:09 AM »
Hello,

Who know's what a error 200 means. I'm getting this in a call to /usr/px125/lib/_tools/makeqrcode line 30. The programm is password encrypted so I can't debug it myself.

Regards,
Cees Trip.


7
Programming / Re: error 17 on program file
« on: September 12, 2018, 04:32:58 AM »
OK, Eric. To bad. I was looking for a way to start a nomads panel serverside an within this panel performing a program on a windows/windx client machine with all variables shared.

8
Programming / error 17 on program file
« on: September 11, 2018, 07:49:52 AM »
Hi,

I'am getting a error 17 while trying to do a perform located on a windows machine.
I copied the program "VLB903C" to the directory C:\USR\PVX125\WINDX\
When I try to perform or load the programm I get an error 17.
I could use som help.
LET WDX$="[WDX]C:\USR\PVX125\WINDX\"
PERFORM WDX$+"VLB903C;GRID_VULLEN"

Pages: [1]