Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Logfile: [01E8:01EC][2014-05-06T09:30:29]i001: Burn v3.7.1224.0, Windows v5.1 (Build 2600: Service Pack 3), path: E:\\Downloads_von_C\\Cobol_vce_22.exe, cmdline: ''[01E8:01EC][2014-05-06T09:30:29]i000: Initializing string variable 'ProductRevision' to value '2.2.00244'[01E8:01EC][2014-05-06T09:30:29]i000: Initializing string variable 'InstallFolder' to value '[ProgramFilesFolder]Micro Focus\\Visual COBOL'[01E8:01EC][2014-05-06T09:30:29]i000: Initializing string variable 'RumbaCheckboxState' to value 'disable'[01E8:01EC][2014-05-06T09:30:29]i000: Initializing string variable 'RumbaLabelState' to value 'disable'[01E8:01EC][2014-05-06T09:30:29]i000: Initializing string variable 'InstallFolder2' to value 'C:\\Users\\Public\\Micro Focus\\Visual COBOL'[01E8:01EC][2014-05-06T09:30:29]i000: Initializing numeric variable 'ignorechecks' to value '0'[01E8:01EC][2014-05-06T09:30:29]i000: Initial
I would like to know how to add sql server portion to cobol program in visual studio.
where is the copybook of my program ? in which directory?#COBOL#COBOLFILE#COBOLVISUALCOBOLMIGRATION
How to know how many rows have my project or solution I´m using VC2010 2.2
New to COBOL, I'm a student and im required to download this program for my Business Systems Programminv class. But im not able to install the program because it says that I'm in need of a 32-Bit Oracle Java 1.6 or higher. Can anyone help me find this? I've downloaded the latest Java that I think it is requesting and that's at version 8. #VisualCOBOLJava
I have a small Project that contains 3 programs PROGA is the 'driver' and sets up a common data file and then calls PROGB which processes and then PROGB calls PROGC and further work is done PROGC then returns to PROGB which then returns to PROGA PROGA then sets up a fresh load of data and calls PRGB again, and so on This all works well and is extremely fast However, the behaviour of PROGB changes because some of it's WORKING-STORAGE values are not being loaded as intended For example, if I have the WS entry as this 77 FLAG-A PIC X(001) VALUE 'N'. and PROGB sets it to 'Y' during it's first run, FLAG-A is not being loaded as value 'N' when PROGB is called for the second and further times My workaround is to discover this each time and MOVE 'N' TO FLAG-A early in the processing for PROGB which works However, I most probably do not have a parameter set correctly Is there a specific way to CALL or prepare in advance a prog
We recently ran into a problem with our NetExpress apps and Windows Server 2012 R2. Runtimes suddenly slowed down by a factor of 5 to 10 times. We had clients report the same thing. Someone in the ACU Cobol form had a solution and it worked for us as well. Funny thing is some installations of Server 2012 R2 run fast without turning this TSFairShare off. If anyone else has any comments about this problem we'd like to hear them. community.microfocus.com/.../11887.aspx http://www.ryslander.com/disable-fair-sharing-in-windows-server/ https://social.technet.microsoft.com/Forums/sharepoint/en-US/ad88f010-3130-4fa0-ada8-f5245c153858/rd-session-host-slows-down-program?forum=winserverTS
This article describes the method for expanding copybooks in the CodeWatch source editor. Problem: By default, the CodeWatch editor collapses copybooks contained is a source file. However, sometimes it is useful to view the contents of the copybooks expanded, in-line, in the source. Resolution: You can expand/collapse copybooks in the CodeWatch source editor by toggling the "COPY Files" settings in the "View" menu. Alternatively, you can instruct CodeWatch to expand copybooks, by default, by adding the following option to your CodeWatch configuration file ( %USERPROFILE%\\AppData\\Roaming\\Liant\\CodeWatch\\RMCW.ini )[Editor]AlwaysExpand=Y
Problem When running cobsje, the following error is displayed Sorry unable to load libcobjvm_sun_150_64 If libcobjvm_sun_150_64 is on shared library PATH, then ensure 'libjava' and 'java' are found on the PATH/Shared Library PATH. Resolution You need a 64 bit version of libjvm.so available Either search on your system to find one or down load java jdk. Then point JAVA_HOME to this location in a setup.sh script and run it. setup.sh # JAVA_HOME=/home/products/oracle/u01/app/oracleclient/product/11.2.0/client_1/jdk export JAVA_HOME COBMODE=64 export COBMODE # COBDIR=/home/products/sx51ws8 export COBDIR # LD_LIBRARY_PATH=$COBDIR/lib:$LD_LIBRARY_PATH export LD_LIBRARY_PATH # PATH=$JAVA_HOME/bin:$COBDIR/bin:$PATH export PATH # cob -v cob -V # # # this sets up the classpaths and other enviroment variables. # note the . cobsje # the . this will set the environment variables in the cur
Hi, I am getting Error 26 - Licence validation error when I try to use Visual COBOL PE. It appears that validation error was caused by me changing system clock for DAY-OF-WEEK testing. (Had to change clock to see of DAY of week code was returning correct value). Could you please re-enable my licence? I should have Timed licence until 1/24/2016. One of the following emails was used for product licence registration: lazarenko.luda@gmail.comlaza0027@algonquinlive.com Thanks.#Error26-productlicenceclocktamper
Hi In our project earlier we were using a unmanaged DLL that was consumed by C . Now we are migrating from C to .NET. So the same DLL can not be consumed by .NET. The problem statement:- The COBOL program "Prog1" inside the DLL is having 4 Entry points. As read from some of the threads we are trying to create a COBOL COM wrapper Class from File -> New->CLASS->COM Component. This will create a new class in a new Net Express project. then We tried to create 4 method using Class wizard in this Class for all entry points. 1. Like Method1 for Entry1 2. Method2 for Entry2. Now we are not able to understand how to make a call to existing (Prog1) COBOL program for an entry points in the Method. We also tried the below option: Method 1() :declare in local storage of method 1 77 default-entry-point procedure-pointer. :Code in Mehtod
Hi, Something happened and now if I try to compile to generate an int file under Visual COBOL for Visual STUDIO, I receive FILE I-O ERROR on the .int file and nothing is generated. I am using cobol myfile.cbl int() ; from the Visual COBOL Command Prompt 32-bit
hi, on netexpress 5.1 the function numval of a string don't give abend . On mfe, instead, it give abend "181 invalid parameter error" the source NUMB PIC 9(18) comp. WK-STR PIC X(50). MOVE "00000061G " TO WK-STR COMPUTE NUMB = FUNCTION NUMVAL(WK-STR) I add this compiler directive: HOSTNUMMOVEHOSTNUMCOMPAREHOSTARITHMETICNOSIGNFIXUPCHECKNUM but I don't have the same behavior.. thank... #181numval
In the doc on Interoperability, the link "To use CCW to expose a .NET class to native COBOL" appears to be a broken link. Thanks, Austin1
We're trying to troubleshoot some sporadic crashes in an ACUCOBOL 9.2.4 program that interoperates with a C# DLL. Our configuration file has the following setting: ACU_DUMP 1 This does cause a dump file to be created for some crashes, but not all. What tools/techniques can be used to troubleshoot the sort of crash that prevents the dump file from being created? My first thought is to try using procmon, but I just wanted to see what else this community would recommend. Thank you!#ACUCOBOL9.2.4#Crash#AcuCobol
I have a program in cobol wow that is called to create a file. The main program only does the following: perform process-1 thru exit-process-1. The process involves reading a file to finish creating other new features. While running the process "read next" I want to allow the user to press a button to cancel.On the form I have a button that says "press here to cancel". During the process I need to know if the user presses the button to cancel. The question is, what code should I include in the process for detecting that was pressed the button "cancel" and proceed to go to the exit-process-1.
I have imported a Net Express project that uses Dialog System into Visual COBOL. When I try to run in I get "DSRUN error 18,0,0". I have added the Addpack for Visual Studio 2012: compataddpack2012_222.msi Is there some other step I am missing?
i need to implement datdiff function as following. How can i recieve the value of duration in a field like 01 duration pic 9(05). SELECT DATEDIFF(SECOND ,PulsZeit,getutcdate()) AS 'Duration' FROM Clients where AnwendungsId='Thomas Grausgruber@IBOS.TG007'
Is there any guide for creating reports at the size of reciepts (80mm) for thermal printers?#reports#receipt#thermalprinter
I’m looking for some alternatives to printing documents with graphics/logos from Linux, and I’m interested in what other people out there are using? Currently we are using thin client to windows clients with a Linux data server. For printing we’ve always stayed internal to runtime, printing graphics and logos by using win$printer commands passed to the windows print spooler. As our output has become more complex we’ve run into speed issues with this approach. So we are now looking into alternatives. We do not have any issues getting the output converted to PDF, or in front of the client’s eyes but with generating the graphical elements themselves outside of win$printer. Initial thoughts are to generate a HTML report on the server side, or start exporting data in a flat format to be picked up and output by a report writer. But I was wondering if anyone else has already crossed this bridge or has other insights as well? &nbs
Hello, We use to debug an application with cobanimsrv under ServerExpress 5. We start cobanimsrv and then start an application that calls a daemon to communicate with cobol. When cobanimsrv is started, it waits for our application to start. Once we have launched our app (via Adobe Air), we can debug the cobol code with anim. Is there an equivalent of the cobanimsrv command for VC2.1 for Eclipse in order to debug a program from inside Eclipse ? Thank you Alain
Hi, what about the SQL Option to set the application name - any restrictions with Microsoft SQL Server? I tried the following: exec sql set option APPLICATION "MyAppName" end-exec exec sql connect to :db-alias user :user-passw end-exec The connect works as usual but APP_NAME() in SQL Server is not affected, it is empty. Windows 7 Professional, Net Express 5.1 (Version 5.104.0083), Application build as 32-Bit, SQL Server 2012, ODBC driver standard SQL Server Regards, Torsten
Hello, I have been trying to send mail using cURL from Cobol. I took an example from this forum but I am stuck with the mail body: Here is the link to the example from cURL http://curl.haxx.se/libcurl/c/smtp-mail.html. The following code (partly taken from a previous discussion on the forum) seems to work partially : *> Demo showing how to make an http request from a COBOL program *> using libcurl. *> libcurl can be found at sourceforge.net/.../ *> libcurl documentation can be found at http://curl.haxx.se/libcurl/ *> *> compile as follows: *> cob -x urltest.cbl -L/usr/lib -lcurl -L/usr/ssl/lib -lssl -lcrypto -ldl *> &nbs
Hi, guys!Living in a country that uses comma as a decimal point (1.000,00), I found a bug in the decimal-point is comma declaration.After using a mask to accept input:w-Number PIC 9(02)V9(02)w-Number-e PIC Z9.99 It displays "0,00" but it ignores the Z, and after moving the mask to the proper variable, it continues to have the default value:move w-Number-e to w-Number.#decimalpoint#comma#COBOL
When opening the project is presenting the error attached. Would have to refer to any namespace?I'm using VC 2.2 Vs 2012.
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.