PxPlus User Forum

Twitter Twitter Twitter

Recent Posts

Pages: [1] 2 3 ... 10
1
Programming / Re: strange error 61
« Last post by James Zukowski on Today at 12:53:18 PM »
Have you tried separating the OPEN from the LOCK?
2
Programming / Re: strange error 61
« Last post by Thomas Bock on Today at 10:24:31 AM »
This is a WindX session and the security options are properly set.
The error occures at random. But how can that be? The file has just been created, so PxPlus must be able to open it.
3
Programming / Re: strange error 61
« Last post by Devon Austen on Today at 07:52:52 AM »
One of the reasons for a error 61 is:

   •  When using WindX, remote access ('WindX authorization') has been denied.

Is this running via WindX?

If so make sure you have your WindX Security setup correctly to not deny access.

For info about WindX security check here:

https://manual.pvxplus.com/?windx/Windx%20Security.htm
4
Programming / strange error 61
« Last post by Thomas Bock on Today at 04:35:17 AM »
I don't understand why the code below throws an err 61 sometimes

Code: [Select]
BUSY_FILE_NAME$ = "[lcl]Busy.txt"
serial BUSY_FILE_NAME$, err = *next
if tcb(2) {
rem in case the file could not be created ...
} else {
busyFile = hfn
open lock (busyFile) BUSY_FILE_NAME$
rem this throws error 61 ???
}
5
Off Topic / SBOM generation
« Last post by cwellis67 on April 15, 2024, 11:12:49 AM »
Has anyone had to create an SBOM for their PxPlus product, and/or does Pvx Plus Technologies provide an SBOM for the language?
6
Programming / Re: Help with Initial Value Load Error
« Last post by Mike King on April 13, 2024, 11:35:31 AM »
The CMD_STR$="U...." loads the designated panel passing it all the current variables and leaves both panels active -- that is the controls on each panel are all active and they share a common environment (variables).

The PROCESS command is basically like a CALL.  The current panel will be deactivated and panel designated will be loaded and displayed with its set  of variables.  Only controls on the new panel will be active.  When the user closes the panel control will return to the program/panel that initiated the PROCESS directive.  Now you can pass values on the PROCESS command, these will be mapped into the variables ARG_1$, ARG_2$, ... in the new panel using the same rules as a CALL directive in terms of passing arguments.
7
Programming / Re: Help with Initial Value Load Error
« Last post by nrh7 on April 12, 2024, 06:14:49 PM »
WOW! Amazing, I was using CMD_STR$="UPanelName" to open the panel from the menu but changing it to PROCESS fixed the listbox error, THANKS A BUNCH!, I gotta try the other methods too just in case.
8
Wish List / Re: An updated Eclipse Plugin
« Last post by Mike King on April 12, 2024, 04:42:51 PM »
Looks like Sage's SSL certificate is bad.  You need to contact them.
9
Programming / Re: Help with Initial Value Load Error
« Last post by James Zukowski on April 12, 2024, 04:08:30 PM »
If you're use PROCESS to work the panel, then all variables should be cleared when you exit the panel. Alternatively, when you initialize the panel, before you load the listbox, be sure to clear all of the field variables.
10
Programming / Help with Initial Value Load Error
« Last post by nrh7 on April 12, 2024, 01:04:08 PM »
Hello

I'm working on a software for a client but I'm having an issue with a Listbox.

The program goes from:
-Log in Screen
- - Main Menu
- - - Chart of Accounts

When I enter the COA panel it loads everything well, the panel has only one listbox.

The problem is that when I pickup something from the listbox and close the panel, then reopen it, it gives me the following error:

"""""""""""
LOAD ERROR
Unable to set initial value for Listbox @(etc,etc)
Value that failed is etc,etc (whatever record I picked before closing)
"""""""""""
Then I just click "Ok" on the screen error and the panel keeps running normally, how can I skip that initial value?
Is there a command or something to release that value when closing the panel so that when I open the panel again it does not try to find what was selected before?

Thank you very much!
Pages: [1] 2 3 ... 10