Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Oi, Este é um exemplo de como você pode chamar outras classes que estão no mesmo projeto ou que estejam em outro projeto na mesma solução. Abraços, Coral Hi This is a demo to show how you can call classes in the same project or in different projects inside the same solution. Best regards, Coral#VisualCOBOL#demo
Oi, Este é um exemplo de como você pode trabalhar com variáveis boleanas para ativar e desativar radiobutton e checkbox em WPF. Abraços, Coral Hi This is a demo to show how you can work with boolean variables to check or uncheck radiobutton and checkbox objects in WPF. Best regards, Coral#demo
Oi, Este é um exemplo de como você pode implementar o conceito do AUTOSKIP em campos de texto em WPF. Abraços, Coral Hi This is a demo to show how you can implement an AUTOSKIP using WPF textbox objects. Best regards, Coral#VisualStudio#wpf#demo#Autoskip#VisualCOBOL
While we are waiting for our application server to be configured we have started some preliminary testing of our application outside of the VS IDE on our development PCs. Everything runs as expected when there are no errors, but if an error is encountered then a "Visual Studio Just-In-Time Debugger" window opens and must be manually dealt with. When we click the "No" button then the error messages familiar to us from our Net Express days are displayed. We are using VS 2013 and VC 2.3 for VS 2013 on a Windows 7 PC. Our projects are Native COBOL, Release configuration (no "Compile for debugging"), x64 platform, and linked as Dynamic with binding. The Console Application projects include system programs, the Link Library projects do not. Q1. So why is a .idy file created on Build? Q2. Why is the VS JIT Debugger being triggered if everything is built with no "Compile for debugging"? Q3. Is there a way
Prelude Several examples of how to utilize COBOL in a Microsoft .NET environment have been circulating for a number of years. Some of these examples are quite dated and due to Framework enhancements, (2.0, 3.0, 4.0, 4.5 and now 4.6) the use of the namespaces as well as the syntax used to access them has changed significantly. Micro Focus recently released Visual COBOL 2.3, our flag-ship product for Visual Studio 2015. With a number of changes that have occurred in both .NET and Visual COBOL an update of all our previous articles is in order. So over the next couple of months we will be updating all of our previous articles to the latest versions and introducing new articles with new content. We hope you find these articles educational and valuable to you and a benefit to your organization. This particular article has benefited from a number of changes in Micro Focus Visual COBOL. The addition of interfacing capabilities in .NET and JVM have made the process of accessing data hi
I have three questions to ask your help (the following link is the example of the three situations): http://www.esic-lda.pt/VC_Help_V01.pdf 1-I'm using a datagrid and load the data as the example you sent me: working-storage section. 01 custTab type Tabelas. set custTab to new Tabelas set custTab::CODIG to BTB-CODIG set custTab::DESAX to BTB-DESAX write custList from custTab Now I have two problems: It's created a line more; I can't select the first row to the first time. 2 - Picture in a data field If the field value is zero then is put a 0 in the first position of the field and write before that position 3 - CheckBox inside a datagrid How do I manage the checked and uncheked in this situation? Thsnks again
I am using Visual COBOL 2.2 under VS 2012. The MF manual says that on the SQL tab of Project Properties I should see "Oracle Pro*COBOL (COBSQL)" as an option. That option is missing from the drop down list. Pro*COBOL was installed after Visual COBOL. How can I get Pro*COBOL onto the list in the drop down? Thanks, Leigh.#COBOLSQLCOBSQL
HI, Scenario: I have to call COBOL program from my WCF/WCF REST. I have created a wcf and wcf rest project and incorporated my C# code in the interface implementation. However its failing to call COBOL and getting results. The C# code to call cobol is working fine when call from console application. Same code is not able to call from WCF. Kindly let me know how do I call COBOL (C# code exists and working in console) from WCF REST or WCF. Am new to WCF and COBOL. Kindly give some inputs. Thanks, Manasa
Have I tab to a text file on a windows form, the full text in the field is selected and highlighted, Is there a way to not have that happen when tabbing to a text field?
Hi all, Are there any limits for Vision 5 files, in terms of absolute number of records or file size? Our client has a huge database of 2.5 mil records, dat file is 860MB, idx file is 470MB. Acuserver runs on a Windows based server.
Hi, I want to ZIP one file contained in a PC's local directory. Can anyone advise how to convert this into cobol? //Creates a new, blank zip file to work with - the file will be //finalized when the using statement completes using (ZipArchive newFile = ZipFile.Open(zipName, ZipArchiveMode.Create)) { //Here are two hard-coded files that we will be adding to the zip //file. If you don't have these files in your system, this will //fail. Either create them or change the file names. newFile.CreateEntryFromFile(@"C:\\Temp\\File1.txt", "File1.txt"); newFile.CreateEntryFromFile(@"C:\\Temp\\File2.txt", "File2.txt", CompressionLevel.Fastest); }Taken from the website:-www.codeproject.com/.../Creating-Zip-Files-Easily-in-NET
Problem: When attempting to start AcuBench version 10.0.0 on Windows XP there is a message "not a valid win32 application". Solution: Unfortunately AcuBench version 10.0.0 will not run on Windows XP. This is becuase the underlying third-party software upon which AcuBench is built does not support Windows XP. There is nothing that can be done in AcuBench 10.0.0 to overcome that limitation. The only solution for AcuBench 10.0.0 is to move to a newer version of Windows; i.e. Vista or later. If you must develop on Windows XP you will need to install AcuBench version 9.2.5 or prior and then configure the project to use the version 10.0.0 Compiler and Runtime. Here's how to do that: 1. Install ACUCOBOL-GT Version 10.0.0 Development System only, not AcuBench, and activate the license.2. Install ACUCOBOL-GT Version 9.2.5 Acubench only, and activate the license.3. Start AcuBench 9.2.54. Open your AcuBench project.5. On the Project menu select 'Project settings'.6. Click on
I'm having a problem in text fields that come from the MySql database.I'm using the following statement:EXEC SQL SELECT bdname INTO wrk-name FROM Costumer (the wrk-name is the PIC X (50).Then I'm using:set txtName:: Text to wrk-nameWhat happens is that the campio txtNAME is completely filled (50 characters) not allowing write nothing but nullifying the blank spaces. How can I resolve the issue? (Visual Cobol 2.2 with WPF)
I am trying to use AcuBench after being away for awhile. Just installed Version 10 and tried to run AcuBench. I get the message "aclnt.dll missing, or is missing functions!". I have aclnt.dll in AcuGT/bin and I added it to AcuBench when I got the message the first time. What am I missing?
Hi, I need to code a drop down box in one of our menu screen. I have zero idea how to do that. Does any one have any sample program of material which I can refer?
Hi, I am trying to compile a program using ORGANIZATION IS XML. I am receiving the following (from the LST) but do not know why. Can anyone help? * Micro Focus Net Express V5.1 revision 000 11-Dec-15 12:20 Page 1* EP032CBL.cbl* Options: NOLIST NOASMLIST OMF(OBJ) GNT(.\\) OBJ(.\\)* DIRECTIVES(D:\\EPS_SYSTEMS\\BASE_RLSE_CSC\\wmaNEX\\ENV\\NETEXP.DIR) 1 $SET P(PREXML) WARN ENDP
Hello Chris, I am trying to create a structure FILE.DFS but the DataTools is not importing the structure of idy file generated in version vc.2.3. Simply does not show the layout of the record. With traditional DataTools generate the FILE.STR normally. What could be happening?
I am tasked with trying to find ways to improve performance of Visual COBOL application. The Visual Studio Instrumentation appears to match to symbols from COBOL code for some functions, but in many cases can not match source. I tried to VS Premium 2013 and VS Premium 2010 and get similar results to below. The "Summary" of instrumentation process will show long running Functions, but when selected it will display "Source code not available. You may not have the appropriate symbol paths or there was an error loading symbols.". I have double checked the symbols path. Is there any known issues with using VS Intrumentation? Any suggestion for determining which functions in our COBOL app are taking most of the time?
Dears, I've got the same errors on two of my computers. I need to use Cobol for school. When I try to build my program it gives me the following errors: "cannot open projectName.exe". please help me
Prelude Several examples of how to utilize COBOL in a Microsoft .NET environment have been circulating for a number of years. Some of these examples are quite dated and due to Framework enhancements, (2.0, 3.0, 4.0, 4.5 and now 4.6) the use of the namespaces as well as the syntax used to access them has changed significantly. Micro Focus recently released Visual COBOL 2.3, our flag-ship product for Visual Studio 2015. With a number of changes that have occurred in both .NET and Visual COBOL an update of all our previous articles is in order. So over the next couple of months we will be updating all of our previous articles to the latest versions and introducing new articles with new content. We hope you find these articles educational and valuable to you and a benefit to your organization. Overview Do you create applications for use in multiple locations and languages? This article will show you how to use the power of LOCALIZATION within Visual Studio .NET to create one screen and ha
To install vc2.3 it must remove vc2.2. but when I install version 2.3 of the system is corrupt and not initialize so is necessary restore the last válid version. Has anyone experienced this? Visual Cobol for Visual StudioSystem: Windows 7 Professional 32-bit
I am running AcuGT V9.2.3 on a Windows 7 PC and need a AcuGT program to download multiple data files from a US Treasury Dept website for processing. I wrote a sample program using WebClient .NET features to pull the files from the website, most of the time this program works just fine but other times it is failing with a Webclient error that reads: The remote server returned an error: (407) Proxy Authentication Required" and then the program simply crashes. What is odd is the random nature of this failure, I can run the program 10 times in a row and it will run just fine, then I can run it 5 times and it will fail with this error. Five minutes later I can run the program again and it runs just fine. The results appear to be completely random at this point. Couple questions: 1) Is there a better way to have my AcuGT program download files from a website or is Webclient the best approach? 2) If Webclient is the best approach is there a way to captu
The user has a SQL Server multi-subnet failover configuration and needs to connect via Acu4GL. Unfortunately, when A_MSSQL_DEFAULT_CONNECTION is set to the name of the listener for automatic mirroring, SQL Error 17 is returned and the application cannot connect to the DB. Has anyone successfully configured Acu4GL in such an environment?
Runtime Version 10.0.0: The listbox no more detects a dblclick Event (event-type 5). Any Idea?
Is it possible for me to redownload Visual Cobol Personal Edition for Visual Studios 2012? I got it a few days ago for my class, but I was having driver issues and went back from windows 10 to windows 8, now the page is no longer available when attempting to find it. I can find Visual Cobol for Visual Studios 2015,but nothing else.#PersonalEdition#2012#PE#VisualStudio#VisualCOBOL
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.