Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Problem: The following will assist you in determining the cause of Dialog System Error 17 Codes you may encounter. Resolution: An error 17 means that Panels 2 (the technology behind Dialog System) has encountered an error. The fields DS-Error-Details-1 and DS-Error-Details-2 will give more information on a Panels 2 error. DS-Error-Details-1 is the function Panels 2 was trying to perform, and DS-Error-Details-2 is the error Panels 2 encountered. This can be crossed referenced with Panels 2 copy books. Panels 2 Function Codes 78 Pf-Initialize VALUE 0. 78 Pf-Set-Window-Backdrop VALUE 1. 78 Pf-Redraw-Windows VALUE 2. 78 Pf-Create-Window VALUE 3. 78 Pf-Shift-Window VALUE 4. 78 Pf-Get-Window-Info VALUE 5. 78 Pf-Delete-Window VALUE 6. 78 Pf-Show-Window VALUE 7. 78 Pf-Unshow-Window VALUE 8. 78 Pf-Flush-Panel VALUE 9. 78 Pf-Scroll-Panel VALUE 10. 78 Pf-Write-Panel VALUE 11. 78 Pf-Read-Panel VALUE 12. 78 Pf-Save-Window-Arrangement VALUE 17. 78 P
XML extension : $SET preprocess(prexml) endp runs propoerly on windows but doesn't under Linux.Is it system dependent? What should be included to read XMl in LINUX system? Thanks for help in advance.
Can you tell me how to do this in COBOL (C# as the example). I’ve highlighted the constructor chaining method in yellow. public class Car { private Driver driver; public Driver Driver { get { return driver; } set { driver = value; } } public Car() : this (new Driver()) { Driver.Name = "Speed Racer"; } public Car(Driver driver) { this.driver = driver  
What mean the following error in german:MSB4181 Die Aufgabe "Cobol" hat FALSE zurückgegeben, jedoch keinen Fehler protokolliertTraduce in english: the Task "Cobol" give FALSE back, but no error in protocolThis error only in VC6.0 without Service packs
Hi,I wish to enhance some of our code to include diagnostic debugging logging lines. I Know I can do this by using a 'D' in column 7 and setting WITH DEBUGGING MODE against the SOURCE-COMPUTER. What I would like to know is is there an easy way to change the color scheme so the 'D' lines appear in a different color, they take the same color as a comment line which is not great as I'd like to differentiate them from comment lines.Failing that is there something else I could use, put a different character in a different column perhaps to trigger a change in color scheme for these lines ?Thanks in advance.
I call Outlook to send emails. I easily attach files to send with the emails. Now I want to insert image files within the body of the emails. I tried the following, but the file still shows up as an attachment:MODIFY OUTLOOK-HANDLE, CREATEITEM (olMailItem) GIVING Mail-Handle.INQUIRE MAIL-HANDLE, @Attachments ATTACHMENTS-HANDLE.MODIFY ATTACHMENTS-HANDLE, @Add(FILE-PATH, @olEmbeddeditem, INSERT-POSITION, SIMPLE-NAME) Any suggestions would be greatly appreciated. #attachments#Email
ChrisUsing the command line batch files the source code compiles and (apparently) links OK ....c:\\WORKAREA\\Eloq-BOM\\BOMPROG>compileMicro Focus COBOLVersion 6.0 (C) Copyright 1984-2020 Micro Focus or one of its affiliates.Object file-name [BOMP.OBJ]:Source listing [NUL]:Object listing [NUL]:* Checking complete with no errors - starting code generation* Generating bomp* Data: 6912 Code: 6873 Literals: 3792c:\\WORKAREA\\Eloq-BOM\\BOMPROG>linkMicro Focus COBOL - CBLLINK utilityVersion 6.0.0.69 (C) Copyright 1984-2020 Micro Focus or one of its affiliates.Microsoft (R) Incremental Linker Version 14.16.27035.0Copyright (C) Microsoft Corporation. All rights reserved.bomp.objcbllds00003FE8.objCreating library bomp.lib and object bomp.expMicrosoft (R) Manifest ToolCopyright (c) Microsoft Corporation.All rights reserved.... but when I try to run BOMP.EXE I get the error message "The ordinal 75 could not be located in the dynamic link library c:\\workarea\\eloq-bom\\bomprog\\image3kc
Looking for some advice and help and wondering if anyone has an example source code that can be attached that will open up a EBCDIC RDW data file and write it back out to ASCII .The input file has been downloaded correctly through FTP.Thanks
I was reading CodeWatch Document but not able to get info. so thought of placing request here:I have below scenario :a. Currently, RM/COBOL program getting triggered via Message in Linux Queue b. I am trying to replicate same scenario in window based RM/COBOL.Is it possible to debug RM/COBOL Program in CodeWatch when external message is arrived in queue ?
Good Morning -I am trying to query Table via JDBC. Opened a cursor and reading from first till last record.ISAM File corresponding to TABLE : Len 512 Char, 84 fields.JDBC connection is automatically closing after 450K records. Is there any setting missing ?I understand file is getting read from top to bottom. Expecting slow speed but is there any way to enhance speed.
I am trying to install extend 10.3.0 on a Docker Container running Windows Server Core 1909. After running the extend installer, I try running 'crun32 -v' from a command prompt to verify the install but no output is displayed. The version information is not displayed as expected and no error is displayed indicating a failure. The program simply returns to the command prompt. I have successfully installed an older version of extend (9.1.1) on the same container and running 'crun32 -v' returned the expected version information. However, my application now requires the use of 10.3.0 to run properly, so using the older version of extend is not an option for me.The following is the command I am using to install extend 10.3.0:msiexec /i 'C:\\temp\\1030Win32\\msi\\extend(R) Version 10.3.0 x86.msi' /l*v C:\\temp\\ExtendInstall.log /qn ADDLOCAL=Compiler,Runtime,WebRuntime,ThinClient,WebThinClient,
Hi All,May I know is it compulsory to use OPEN I-O WITH MASS_UPDATE in updating or posting batch program to prevent the File/Record Lock Issue? What is the bad impact if using the MASS_UPDATE?
The standard behaviour of a grid is to show rows that contain data and the rest of the grid is empty.But I need to fill a grid with blank records.Imagine a grid of 20 lines and only 2 rows of them has data.The other rows should be blank and show the ROW-COLOR-PATTERN.I tried to fill it with non-printable characters like x"00" or x"0a" but the grid still ends after the "non-blank" rows.Is there a solution to my problem ?
Several years ago I developed an application using a network database and which accessed a 3rd party library. At the time I was compiling and linking using batch files thus:compile bat: cobol bomp.cbl anim case litlink makesyn "comp-5"="comp" omf(obj)link.bat: cbllink bomp.obj image3kc.libI now want to update the application using Visual Cobol. How can I set up VC to replicate these various commands?ThanksPaul
I just downloaded the visual cobol personal edition, vcvs2019_60.exe. When I click on it to install I receive an error message stating this app can't run on your pc. Any suggestions?
We are using Visual Studio Personal Edition with Visual Studio 2019. When entering a program with indentation, the indentation is removed when you reload the program. Any suggestions? I'm using it to teach Cobol and don't wish to switch platforms but need the indentation.
Hi, Currently we would like to do the new program that can achieve the below features. 1) In the main program(parent) we will have one toolbar having 10 icon. 2) When call another program(child), we would like to reload the toolbar with new image. It means that change from 10 icon to 7 icon. 3) and what we want is the icon on the toolbar when we click, it will response to the child program instead of parent program. It means that after we load the new image of the toolbar with 7 icon, when we click the exit icon, it will exit the child program not the parent program. May i know that anyone have idea this can be done? or any idea how to do so. Thanks You.
the result when converting a file.h will give the same result as with h2cpy.exe from netexpress5.xthe Name longer than 31 characters will be cut, i mean this is not necessary for visual Cobol 6.xIs this a bug or wanted from the developper?Why?Thanks for help
Having issues scanning COBOL code with Fortify SCA. Any help is appreciated. I have source files extracted from a mainframe. This is not being detected by the workbench. Any help or guidance is appreciated.
I am using Visual Cobol Development Hub on HP-UX. I recently discovered the REPOSITORY paragraph in the CONFIGURATION SECTION of the ENVIRONMENT DIVISION and am trying to use the FUNCTION feature. From the documentation, it appears it only works with the ISO2002 and MF compiler dialects, but the docs also say that MF is the default. None the less, when I issue a FUNCTION ALL INTRINSIC. statement under REPOSITORY, my compile listing flags the line as "documentary" and generates errors when I try to use intrinsic functions (like MOD) without the FUNCTION keyword.Has anyone used this successfully? I took my test source code to my PC and compiled it (unchanged) successfully using GnuCobol. I would hope if a free compiler works, MF would work too.
A client site suddenly started getting file I-o errors 92 on open I-oyesterday "patch Tuesday" November 10th 2020 , however they do not seem to have applied the recent patches.Strange that 2 servers suddenly start behaving in this way.Windows 2012 R2 Vision files version 9.2.3 acucobol running Just putting it out there as it looks similar to the issue we had 2 years ago with windows server 2008 and windows 7 and the 9107 file error on open-close-delete
One more question about Visual Cobol backward compatibility.Is it possible to configure Visual Cobol (for example version 3) to generate executables compatible with Cobol Server version 2.3?Thanks
A system user passed a program that damaged the windows register and it damaged the installation of Run-Time Visual Cobol, I am unable to reinstall. Um usuário do sistema passou um programa que danificou o register do windows e este danificou a instalação do Run-Time Visual Cobol, não estou conseguindo reinstalar.
Hello,I have a problem when I generate a new solution in VC60, importing a Net Express project, (nw2000.app), the solution nw2000.sln is generated, and 4 cbl projects are generated, nw2000, wgpini.exe (the executable), nomiagrs_lbr (library that contains the .rs files) and nomiaggnt_lbr(library that contains the .gnt files).Apparently everything is generated correctly and without errors. Attached the importreport.txt file But when I try to test it, I observe, after recompiling the solution, that it does not generate the application executable (wgpini.exe), but it generates a file $safeprojectname$.exe, and it does not generate the .lbr libraries either, but a file $safeprojectname$.lbr.What I need to change in the solution so that it does not generate when compiling files $safeprojectname$
I am reading below XML using attached logic, why array 4th subscript is not reading and coming as blank? Or Acu cobol has issue?
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.