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.


Topics - Danilo David

Pages: [1]
1
Programming / DEF OBJECT WORD
« on: November 06, 2023, 01:49:36 AM »
Hello.

Anyone can know how to translate these lines of codes using DEF OBJECT WORD,%WINDX$+"Word.Application" ?
because i did a lot of searched in the manual but i dont find helpful things to do it correctly.
Thank you and God bless

16920 LET CHAN_DDE_EXP=HFN; OPEN (CHAN_DDE_EXP)%WINDX$+"[DDE]"+%DF1_OFFICE$+"WINWORD;"+%DF1_SDRIVE$+"DF1\CONT_DF1\MASTERS_EXPORT\"+"Testrapport_"+STP(EXP_DOSSIERNR$)+"_"+STP(EXP_CBNR$,2)+".doc" ! *NOMSG*
16930 LET DDE_FIND$="<<CB0700>>",DDE_INSERT$=STP(EXP_DO_OMS$); GOSUB DDE_REPLACE
16940 LET DDE_FIND$="<<CB0701>>",DDE_INSERT$=STP(EXP_DOSSIERNR$); GOSUB DDE_REPLACE

49190 DDE_REPLACE:
49200 IF LEN(DDE_INSERT$)=0 THEN LET DDE_INSERT$=" "; GOTO 49240
49210 FOR TEST=1 TO LEN(DDE_INSERT$)
49220 IF ASC(DDE_INSERT$(TEST,1))=34 THEN LET DDE_INSERT$(TEST,1)="'"
49230 NEXT TEST
49240 !
49250 WRITE RECORD (CHAN_DDE_EXP)"[StartOfDocument]"
49260 WRITE RECORD (CHAN_DDE_EXP)"[EditReplace .Find:="+QUO+DDE_FIND$+QUO+"]"
49270 WRITE RECORD (CHAN_DDE_EXP)"[Insert "+QUO+DDE_INSERT$+QUO+"]"
49280 RETURN

2
Programming / Error 2 on OPEN “[TCP]
« on: May 11, 2022, 11:04:23 PM »
Error 2 on OPEN “[TCP]….

We try to open a printer (GODEX G530) on the network: OPEN “[TCP]10.1.0.58;9100;NODELAY; KEEPALIVE”

The OPEN returns after several seconds an Error  #2 , then msg(-1) returns nothing.

What could be a possible reason ?

Thank you



3
Programming / GODEX G530 using commands to print
« on: April 05, 2022, 07:44:21 PM »
hello,
Blessed morning

Anyone knows how to connect and send ZPL or EZPL  commands to GODEX G530 printer?

Thank you very much,

Regards,
Danilo

4
Programming / .doc to .pdf
« on: January 05, 2022, 09:01:44 PM »
hello,

anyone who knows how to convert .doc file to pdf file using pxplus codes?

thanks, God bless

5
Language / System function NUM()
« on: March 12, 2020, 02:37:11 AM »
Hi,

Long time ago we had a problem about  the comma in NUM function and now we did encounter it again,

Example: When you have

A$="200,05" we expect in the NUM result is 200.05 but when you PRINT NUM(A$) the result is 20005


A$="200,,,,05"  PRINT NUM(A$) the result is 20005 also


We try also to change parameter 'TH'=0 and set 'DP'=46 but we get same result

Of-course this is very dangerous in our part, Did anyone encountered this also?



Thank you,


6
Programming / iMAP4
« on: October 22, 2019, 07:50:57 PM »
HELLO,

I have an Imap command to fetch message.
3110 WRITE RECORD (CHAN_FETCH,ERR=ERROR_11)"A07 UID FETCH "+STR(MESSAGE_NUMBER)+" BODY.PEEK[TEXT]"+$0D0A$ ! *NOMSG*
3120 READ RECORD (CHAN_FETCH,TIM=2,ERR=3150)X$
3130 LET MESSAGE$=MESSAGE$+X$
3140 GOTO 3120
3150 !


the problem is when  a message consist of attachment it is very slow because in the message$ variable attachment is included also
but i dont need the attachment in this stage.
do you know how can I ignore attachment in message variable so it can be faster?

Thank you.

Best regards,
Danilo

7
Programming / Mail crash
« on: October 10, 2019, 01:02:42 AM »
Hello
What can be the reason of the error. It is happening regularly on the moment we execute a GET_FILE_BOX.

Faulting application name: pxplus.exe, version: 9.10.9201.0, time stamp: 0x4c6bfea3
Faulting module name: audiodev.dll, version: 6.1.7601.17514, time stamp: 0x4ce7b722
Exception code: 0xc0000005
Fault offset: 0x000019ed
Faulting process id: 0x2d34
Faulting application start time: 0x01d57d682bd77633
Faulting application path: C:\PVX Plus Technologies\Windx Plugin\pxplus.exe
Faulting module path: C:\Windows\system32\audiodev.dll
Report Id: 105be71a-e95c-11e9-889f-00505625c574

thank you

Best regards,
Danilo

8
Programming / Adding text to an existing PDF file
« on: July 22, 2019, 09:06:01 PM »
Hello,

It is possible to add text to an existing PDF file using pxplus code?

Thank you


9
Programming / closing browser
« on: June 05, 2019, 11:20:35 PM »
hello,

is there any way to capture the closing of the browser in the webserver?
because i want to execute pxplus code after the user click the X to close the browser.

thank you

10
Web Services / Website visitors statistic
« on: April 02, 2019, 12:08:19 AM »
Hello,
 
How can I know when someone is visited my Website?
Is there any configuration in the Pxplus Webserver to know who are the visitors and how many they are?
thank you very much

11
Web Services / pxplus webserver automatically start
« on: March 21, 2019, 02:07:52 AM »
I did saw this in the manual

In Windows, you can add the PxPlus Web Server to your Start_up Group so that your port monitors will start automatically when your system boots.

where i can find the start_up Group? because I want to start automatically my pxplus webserver
I am using pxplus 2016

thank you

12
Programming / https
« on: March 14, 2019, 08:54:56 PM »
hello,

i want to make our website to be https and in the pxplus webserver to secure https i need a certificate (ssl certificate).
how to get or generate certificate to make it https .
Thank you


Pages: [1]