Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Dylog Italia S.p.A. azienda leader nel settore dei software gestionali, proprietaria della Gruppo Buffetti S.p.A e di altre aziende prestigiose, ricerca analisti/programmatori per analisi, manutenzione e sviluppo di proprio software gestionale di gestione aziendale (utilizzato da aziende commerciali, produttive e di servizi) e di gestione fiscale (utilizzato da studi di commercialisti).Ricerchiamo uno Sviluppatore in AcuCobol per la nostra sede di Milano.E’ indispensabile:• Esperienza già maturata nella programmazione ACUCOBOL in ambito gestionale per almeno 5 anni• Conoscenza del sistema operativo Microsoft WindowsE' apprezzata la conoscenza di:• Microsoft SQL Server e Transact-SQL• XML• Crystal ReportSono requisiti preferenziali:• conoscenza della lingua inglese tecnicoSede di lavoro: MilanoOrario di lavoro: tempo pieno.Se interessati, inviare il CV all'indirizzo selezione.personale@dylog.it
Where do I report bugs and such? I am using Visual COBOL for Eclipse and I think I found a bug related to files formatting when the "format on save" option is enabled. If you save and there is nothing to format, i.e. the file is conforming to the format settings then it will report a NullPointerException
Does anyone know If you can use Bitbucket to store RM\\COBOL programs? Wanted to back-up my code and COBs and wasn't sure if the COBs would get corrupted or not....
Hi together,we migrated our project from NetExpress to Visual Studio. While debugging our solution, we're now getting this error message:An unhandled exception ('COBOL runtime error code: 173') occured in cblxecwm.exe [13572].Can anyone help us, to find a solution for this problem?
I have a masked amount field in Windows Form as follows:“9999999.99” (_______.__) which would look like:1234567.89 When I launch the form, the cursor starts on the first position on the left which would be the number 1. I would like the cursor’s position to start on the first position on the right where the 9 is. It would be easier for the user to start typing from right to left as the amount field is more likely to be in 100’s position (e.g. $567.89). If the cursor’s position starts on the left, the user is forced to use the arrow key to get to the 100’s position (where the number 5 begins). I have tried the following: set maskedTextBox1::SelectionStart to 8. But this does not work as the “SelectionStart” keeps defaulting to 0. Manipulating the cursor position in C# is as follows:Cursor.Position = new Point(Cursor.Position.X - 50, Cursor.Position.Y - 50); I tried a similar command as follows:set maskedTextBox1::Cursor to new System.Drawing.Point(50, 50).This comman
Hi,I am trying to get back into COBOL and Mainframes -- for those who knows me, I am alive, and I am back! -- , it's been a while since I used Visual COBOL, I remember a few years back there was an Enterprise Edition/Suite that came with a lot of tools that would run CICS, connect to mainframe, a 3270 emulator, etc.What's the lay of the land today? and has there been any significant updates to the OO side of COBOL? Does MF COBOL support the most recent updates in the COBOL compiler, and new Syntax for JSON, Message Queues etc.Thanks
I am trying to align the text in a text box to the right. I realize I can just set the text align property to the right on the form but I want to be able to do this in my code. The C# command istextBox1.TextAlign = HorizontalAlignment.Right; I have tried the following:set txt-TOTAL-BALANCE::TextAlign to new type System.Windows.Forms.HorizontalAlignment But this does not specify left, center or right. I have also tried set txt-TOTAL-BALANCE::TextAlign to new type System.Windows.Forms.TextBox, TextAlign(Right) But this code is incorrect and will not compile.
We have several clients that we support and they are all currently running COBOL Server 2.2.One of them is upgrading their server to Windows Server 2019 and I need to upgrade them to COBOL Server 5.0.I can't install Visual COBOL for Visual Studio 2017 (5.0) on my development laptop unless I uninstall 2.2 first. BUT.... I still need to support my clients that will remain on 2.2.We will eventually be upgrading all clients to 5.0, but I need to support both versions for the time being... how do I accomplish this?We only run native code compiled to INTs. We do not run any managed code.
Customers using git have asked this several times. To see git in your navigation bar, you need to customize you current perspective. Window>Perspective>Customise Perspective Action Set Avalaibilty tab. tick Git and tick Git Navagation Actions
I'm pretty sure I already know the answer to this, but for the record ...My understanding is that Microsoft allows different versions of Visual Studio (for example VS 2013 and VS 2019) to coexist "side-by-side" on the same development PC. And even different versions of .Net to coexist on the same server.My question(s):1) Does Micro Focus allow different versions of Visual COBOL to coexist on the same development PC?2) And different versions of COBOL Server to coexist on the same hardware server or same virtual server?Thanks
Hi, I tried AcuToWeb 10.1 a couple of years ago and had several problems that couldn't be resolved. I just recently tried version 10.2 and was very impressed with the progress. The scroll bars now show up where they are needed and the visual aspects are nearly identical to the thin client. However, I'm still having two problems. The first is that, at the bottom of many of our screens, is a Status-Bar element. When the information in it is updated, it works fine. But whenever the vertical scroll bar is used, the Status-Bar element immediately disappears (or vertically shrinks to a horizontal line; I can't tell for sure if it's there or if there's just a rendering artifact). The second is that we open a second screen (in the thin client it is a new window) to display our help information. In AcuToWeb, this new screen is completely blank. I've tried using the debugger and it looks like it's trying to add the text to the window, but nothing is disp
Created On: 04 March 2011 Problem: The installation of RM/COBOL Development or Runtime System fails with the following error message:"This MSXML 6.0 package is not supported on the current processor type."The RM/COBOL Runtime and Development System installations try to install the 32-bit version of the MSXML 6.0 redistributable. This redistributable package is not compatible with some 64-bit versions of Windows. Resolution: You can manually install the MSXML 6.0 64-bit redistributable package on your target machine. This will allow the RM/COBOL Runtime or Development System to complete their installation procedure properly.You can obtain the MSXML 6.0 64-bit redistributable (msxml6_x64.msi) from Microsoft:http://www.microsoft.com/downloads/en/details.aspx?FamilyID=993c0bcf-3bcf-4009-be21-27e85e1857b1 Incident #2505375 Old KB# 33616
Hi all,We are testing a sample program with RMNet - XML functionalities, program compiles fine, but when running we are getting error:XMLSetVersion: Program missing or inaccessible Our version is 10.0.1 on Windows 10, error is generated just after the "XML INITIALIZE" command.Thank you.
I spend three days trying to solve this last week and was unsuccessful. I currently have a Windows Form text box in which the user types the numbers 123456789. I want to move that data into a numeric field with the value of: 1234567.89 where the last two numbers are to be placed to the right of the decimal point. What I have is the following:working-storage section.01 TOTAL-BALANCE 9(7)V99.method-id txt-TOTAL-BALANCE_Text_Changed final private.procedure division using by value sender as object e as type System.EventArgs.set TOTAL-BALANCE to binary-double unsigned::Parse(txt-TOTAL-BALANCE::Text)end method.The above command, however, gives me a TOTAL-BALANCE with a value of 123456789.00. I have tried a couple of ways of getting the last two digits in the decimal places but I cannot seem to be successful. I was reading a similar thread located at :community.microfocus.com/.../1731883.I tried some of the suggestion in this thread but could not get my code to comp
I posed a similar question a few months back but I did not get the responds that I was looking. Is there a way to implement a timeout feature in WinForm? What I am trying to accomplish is to display a form for about 5 seconds and then have the form close by itself without user intervention so that it may continue running the program. I read an articles at the following address: https://social.msdn.microsoft.com/Forums/vstudio/en-US/719cb7c9-afad-4d88-968d-2be7b4da0e39/how-to-implement-a-timeout-feature-in-windows-forms?forum=winformsBut it pertains to C#. Any ideas on how to achieve this in managed COBOL? I tried doing the following in the ‘Activate’ event of my form: method-id TPS0021J_Activated final private. procedure division using by value sender as object e as type System.EventArgs. invoke type System.Threading.Thread::Sleep(3000) &n
I'm using COBOL via Visual COBOL 2013 4.0 to access a MySQL Community 8.0 database. MySQL for Visual Studio 1.2.8, using OpenESQL to connect, Managed COBOL.The core of my database is a 3-record hierarchy, joined by indexes, the bottom table of which holds variable-length line data, defined as TEXT. My maximum text line is 7060 bytes. I have an application that processes lines of any length perfectly happily through this structure, generating a converted output that clearly 'sees' and processes every byte in every row. However, a parallel process that dumps out the raw data for comparison is losing rows from the cursor where the TEXT length in the row is greater than 1024 bytes.select (...),left(prop_line,1024) **********from program_node pnodeinner join element ele on ele.ele_id = pnode.ele_idinner join property prop on prop.ele_id = ele.ele_idinner join property_line pline on pline.ele_id = prop.ele_id and pline.prop_id = prop.prop_id &nb
We are still using dialogue system screens for the most part.I have a screen with a list of reasons users can select, but they want to be able to insert variables into some of the reasons: For example, on reason three, user would want to fill in the nnnnn to indicate the cost of painting the house. Can this be done with a list box?------------------------------------------------------------------The house was greenThe house was redThe house was yellow and cost nnnnn to paint.The house was white--------------------------------------------------------------------#dialoguesystem#listbox#variable
Hello, can you help me with the following problem? We have an old client / server application using C / S Binding technology (client=Windows, server=linux or windows). We use Net Express and Server Express for development. Now we want to migrate to the Visual Cobol 5.0.What tools do you recommend? Is Visual Cobol Development Hub 5.0 a standalone product or I need to have a Visual Cobol 5.0 for Visual Studio 2017 or for Eclips? Is C/S Binding technology a part of mentioned products? If not, is it available for free download or is it necessary to buy it?Thank you for your answers, Petr
Question Is it possible to provide general information about running the various brave (*.bj) scripts that come with the product. Answer There are some general points to make about using the brave scripts. The full list of bj scripts that can be used are documented in the ‘Using Batch Scripts’ help topic. The scripts can be found in the <CA Install directory>\\Scripts\\BRP directory. Ensure that all parameters that are passed to the brave match the documentation as in upper, lower or mixed case as seen within the docs as all of the scripts are case sensitive. Ensure that you enclose all parameters with double quotes, as spaces will terminate a parameter. This becomes important when passing a spacey name as a parameter. You must pass at least three parameters to brave. The first parameter to brave is always the script to run. The second parameter is always the log file to be generated. The third parameter is always the workspace to use. The other parameters are specific to sc
Problem When running a Cobol Analyzer (CA), error 2753 (screenshot below) is reported during the running of the EA module rescan. This means that the Hot Fix is not installed on the machine. Resolution In the support line downloads section of the Micro Focus site, it states that the CA Hot Fixes are full installs. What this means is that they use the normal install method when the Hot Fix executable is run. It does not mean that they contain the full product plus the Hot Fix. The Hot Fix requires that the relevant CA product is already installed on the machine before the Hot Fix can be applied. The error reported is that the rescan.exe which is part of the CA product, but not included in the Hot Fix cannot be found on the machine. To resolve this, install the relevant base CA product, which can also be downloaded from the support line site and then reapply the Hot Fix. SI # 3193161
Problem After applying Windows security updates Cobol Analyzer (CA) Administrator GUI and the main Cobol Analyzer GUI will not start. Resolution It has been found that applying anyone of the following list of Windows updates, on the relevant of Windows environment stops applications written in Visual Basic v6 from running. As all of the CA GUI’s (main tool, admin tool, pre-request checker and Architecture Modeler) are all written in VB 6, they are affected by this. To resolve this run the relevant optional update for the Windows environment being used. List of Windows environments and fixes that cause the issue: Windows 7 and Windows Server 2008 R2: KB4512486and KB4512506 Windows 8.1 and Windows Server 2012 R2: KB4512488and KB4512489 Windows 10 version 1507: KB4512497 Windows 10 version 1607 and Windows Server 2016: KB4512517 Windows 10 version 1703: KB4512507 Windows 10 version 1709: KB4512516 Windows 10 version 1803: KB451
Problem : Is it possible to install Cobol Analyzer without installing the Administration Tool functionality ? Resolution : Installation of the Cobol Analyzer Administration tool is not optional. The Administrator tool is always installed. To remove the Administration Tool, delete "C:\\Program Files (x86)\\Micro Focus\\Enterprise Analyzer\\Bin\\RescueAdmin.exe" . This is located in the <installation>\\bin folder. Incident# 3139241 #AdministrationTool#Installation
Problem : Does Enterprise Analyzer/COBOL Analyzer support Oracle 12 as its repository ? Resolution : Enterprise Analyzer does support Oracle 12g as its repository COBOL Analyzer only supports MS SQL as its repository Incident# 3158958#MSSQL#Oracle#Repository
Is there a way to exit a form and continue with the program without closing the form? It seems that the only way to continue with my program is to close the form. My program calls the form as follows:INVOKE TestForm::ShowDialog.Continue Program In my form, I have the following code in order to exit the form and continue with the program: if e::KeyCode = type Keys::End invoke self::Close end-if. But I wish for the form to remain visible(not closed) and continue with my program. I tried : if e::KeyCode = type Keys::End invoke self::goback end-if. But this command just goes back to the
read more at webcasts COBOL – Here’s to the Next 60 Years The application development language, COBOL, turns 60 this year. September 1959 saw the first mention of the technical acronym “COBOL”, which was then adopted as the name for the language being specified and developed.... #Other#applicationdevelopment#COBOL
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.