I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
How have you set this up? Do you have the COBOL Server product and licensing installed directly on the server computer and you are trying to run this from a workstation on which no Visual COBOL components are installed?
If this is your scenario then you will need to follow the section in docs on Deploying to a network share which can be found here.
Thanks
I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
I have cobol server installed on the workstation. I have about 30 other programs in the application that work fine. It is naïve cobol with DS screens. This program does use a date picker, could that be causing an issue?
I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
By "naïve code" do you mean native code?
Windows error c0000022 (which is what the error dialog is displaying) is ERROR_ACCESS_DENIED. Check that the user executing the program has permission to read and execute CRTDBI.dll and all of its dependencies.
I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
I am not really sure what the problem could be. I Googled the error and it seems to indicate that there may be a corrupt Windows system file on this computer.
The logical question would be, does this same program run fine on a different workstation? You indicate that it does work on your development computer.
You might try running Process Monitor (procmon.exe) on this system to see what is happening behind-the-scenes when this error occurs.
There are many other links to posts for the same error occurring with non-COBOL applications including this one containing some suggestions.
troubleshooter.xyz/.../
I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
Native not Naïve correct.
I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
We found the issue, it was an access issue. Thanks for the help.
I receive the following runtime error in a visual cobol naïve code application when deployed on a network workstation, program is called from a menu program;

I can run the program on my development workstation without issue. Ideas on what I might have wrong?
Michael - Not unusual; much of the code I work with is naive. Some of it is my own :-)