We have developed a multi-User system, and to access the system, do the reading configuration file. In this file I have the folders where are the database and other paths used by the system.
To make communication between the programs we use variables EXTERNAL
01 w-directory pic x (256) external.
To call a program starting from the main menu use the following syntax
method-id cloToolStripMenuItem_Click private final.
Local-storage section.
01 newForm1 type MMCliente.Form1.
procedure division by using the value sender object and the type System.EventArgs.
invoke type MMCliente.Form1 :: New () returning newForm1
invoke newForm1 :: Show ()
end method.
The problem is that at times the system accuses 9/004 error and we are unable to find out what might be causing this problem, since it is not often that this happens. We did an analysis on the local network and nothing abnormal was identified. What can be this error?



