Search found 620 matches
- Tue Oct 10, 2017 9:01 am
- Forum: eXpress++ Support
- Topic: oError:args
- Replies: 3
- Views: 12596
Re: oError:args
It is not documented in the help file. But it appears to work similar to var2char() for arrays.
- Fri Oct 06, 2017 1:28 pm
- Forum: eXpress++ Support
- Topic: File Enryption Function Required
- Replies: 4
- Views: 13439
Re: File Enryption Function Required
I use the dicryptosys library. Rather inexpensive. $100 our so. I use it for AES encryption. It is a win32 library.
Cliff
Cliff
- Thu Oct 05, 2017 10:30 am
- Forum: eXpress++ Support
- Topic: oError:args
- Replies: 3
- Views: 12596
oError:args
Sometimes oError:args is an array. I know I can do a dc_arrayview() or wtf to view the data. DC_Xtoc() only shows {...}. Is their a different function available to convert the array to a text string to show in a popup dc_msgbox().
- Thu Oct 05, 2017 10:27 am
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
Thanks, all for the help, especially Regan.
When I created a function and posted procname(2),procline(2) to cargo, prior to the break(oError), I got the line needed. Now I can make my dumb custom error handling better.
Cliff
When I created a function and posted procname(2),procline(2) to cargo, prior to the break(oError), I got the line needed. Now I can make my dumb custom error handling better.
Cliff
- Wed Oct 04, 2017 3:22 pm
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
Using ADS and without the error handler, I get the normal runtime error.
- Wed Oct 04, 2017 3:17 pm
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
Do you have a small code sample to illustrate.
Maybe Roger can provide a code sample also.
Maybe Roger can provide a code sample also.
- Tue Oct 03, 2017 5:44 pm
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
Unfortunately procname(2), procline(2) point to the calling function 2 levels up.
bExtract:= {|a,b,o,x| S_Extract(Getlist,oV)} // Extract configured data
Which is the code block activated by the DCPUSHUBUTTON.
bExtract:= {|a,b,o,x| S_Extract(Getlist,oV)} // Extract configured data
Which is the code block activated by the DCPUSHUBUTTON.
- Mon Oct 02, 2017 2:02 pm
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
I did and tried using their code exactly. It appears that when you use a customer error object, it affects the stack. Must have to do something with the recover using, but the error object does not have a variable for the error line number. They check for a call stack method existing, but in the cus...
- Mon Oct 02, 2017 11:09 am
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
This is what I get. First line is the display of the error object. 2nd line is the line calling the function I am in, PRCOMMADEL(). The error line is not there.
- Mon Oct 02, 2017 11:04 am
- Forum: eXpress++ Support
- Topic: Problems using error object
- Replies: 15
- Views: 38872
Re: Problems using error object
That is what I am doing, but in the custom handler all I get it the line displaying the error object info as procline(0), then procline(1), is the calling function, but not the error line that caused the break(e) to be excecuted and then the RECOVER USING. How do I get the error line.