Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
I have my printer_redirection value = true in my app.config file under Tunables. Is there an option that I can set in this same place that will open up the windows printer dialog. Right now, my file is going straight to the printer without allowing me to change options such as printing landscape or whatever is available for my printer dialog.
Hello, We are using RM/COBOL with the WOW Extension Designer version 10.01, InstantSQL and SQL Server 2016 database. We have a situation where we are receiving this error even though we have an end statement following the query that is causing the error. We also have an end statement prior to the query that is receiving the error. Does anyone have any ideas? Thank you.
I was reading somewhere where the Merge statement is not often used with sequential files. Is there an alternative or a best practice when using sort and merge statements?
Hi, I am new to microfocus cobol,need to know how files,DB are handled in MF Cobol ? How batch & online programs are processed ? Thanks Keerthana
Until the 2007 office when executing the insert pictures instruction the images were recorded in the Excel document that was being created without problem.When transferring this Excel to other computers or sending it by e-mail, the images were embedded in the Excel and therefore displayed correctly.As of office 2007, Microsoft, when executing the pictures insert instruction, only links them. And when copying this Excel to other devices, it gives a message of "the linked image can not be displayed ...".Consulting different forums I have found that the solution is to change the instruction of pictures insert, by the one of shapes addpicture.In VB the instruction would be:Dim s = xlSheet.Shapes.AddPicture (_ Filename: = PhotoName, _
I've recently been looking at implementing message queues to be shared between a number of acu run units. I'm developing for Windows 10 (Acu 8.1.1), and it looks like MSMQ would be the best messaging option for me (since it's already licensed). I know that some people have already used MSMQ with acucobol as there's an old thread from 2005 giving code examples and making reference to an msmq.def generated by Axdefgen from the MSMQ libraries, but I've been unable to point Axdefgen at said libraries as they aren't appearing in the libraries listbox. Anyone else using MSMQ? I'd be grateful for any advice.
Hi, Does anyone know if OpenESQL works against Hadoop using Microsofts HIVE ODBC driver or any other Hadoop ODBC driver. Native or Managed Cobol? thanks K
I am run on redhat 7.3 using screen sections with foreground and background color and would like to know if there is a way to determine if a user screen is showing up properly in color, because if it is not then I want to try for white on gray instead of the stark white and black that happens now. Maybe the lack of expected results is due to terminal type or some other setting but I think I should be able to write a character in say white on blue and then read that character to see if that is the result I expected. Was thinking about the library routine of cbl_read_scr_chattrs but not sure how to compare the information received in the attribute buffer. Any suggestions? Snip from current code below where I have had to use the routine for cbl_scr_set_pc_attribute to have screen rewrites work properly. Thank you. 01 SCREEN-1 BLANK SCREEN &
I think this question may have been answered before, but I couldn't find anything whilst searching the site, so I thought I'd try the direct method. We are beginning the process if upgrading from Visual Cobol 2.2 to 4.0. I already have 2.2 for Visual Studio 2012 installed on my workstation. If I install Visual Studio 2015 and Visual Cobol 4.0, will I be able to run both, or will the 4.0 install overlay 2.2. I will still be maintaining 2.2 code while working through the upgrade process, so I was hoping I could use both on the same machine. Thanks for the help! Mike#VisualCOBOL
I am a COBOL programmer trying to create a Web Application in Visual Cobol from a very old system with multiple programs and screens. I am struggling to find tutorials or videos which would help. My knowledge of ASP.net is very limited. I have been through the Tutorial: Developing Web Applications which is wonderful but doesn't really explain how I can use it for my application. Please can someone point me in the right direction. Shirley
Does anyone have a 64bit relativity data client installer that works with Relativity data server v11 on AIX?
Hi, When I compile the example on this link ( community.microfocus.com/.../what-is-a-quick-way-to-test-whether-server-express-can-compile-and-run) with this command: tehpu091!hpemsm1:/tmp/cob_test [353]> cob -x -v -Q k -o pi pi.cblcob32 -C nolist -x -v -Q k -o pi pi.cbl* Micro Focus Server Express V5.1 revision 000 Compiler* Copyright (C) 1984-2009 Micro Focus (IP) Limited. URN RXCPV/AA0/00000H* Accepted - verbose* Accepted - nolist* Compiling pi.cbl* Total Messages: 0* Data: 2548 Code: 365* Micro Focus Server Express V5.1.00 Code Generator* Copyright (C) 1984-2009 Micro Focus (IP) Ltd. All rights reserved* Accepted - verbose* Generating pi* Data: 2092 Code:&nb
It's time to revamp our bitmap button bar, and before we invest in code that decides on which of several size bitmaps to use, depending on screen resolution, one thought is to simply use an SVG icon instead of a bitmap icon. Anyone figure out how to do this?
Hi Everyone, My company is looking for an automated regression testing tool for LCS (Logical Claims Solutions). We are currently on v10 on Windows 7. We are planning to upgrade to v12.14 and Windows 10 in the near (?) future. Does anyone know of a tool that can work for both versions?
How to generate QR code and convert it to jpg file ?? to print Thank you#qr
Can you access enums in one class from another? I have a models folder with some enum values setup in a class file. I want to access those enums from within another class. When I instantiate the class object (myClass type Stats value new Stats()), i was hoping to have access to the enum values, but intellisense does not seem to recognize them. Thanks.
Hi, I'm using the NetExpress v3.1 and I had an entry callback in my program, as below; 000-Program-Body section. invoke entrycallback "new" using z"onCloudError" returning osException invoke exceptmgr "register" using oleExceptMgr osException : : :888-Callback section.entry "onCloudError" using by reference lnkErrObject by reference lnkErrNumber by reference lnkErrText. ....{do some display} and.. go to 000-Program-Body. I need to go back to the top of my program, and just continue with the normal flow (again) and re
Hi, Is there anyone who can provide me the sample program wheelevent.cbl. It is supposed to be included in the AcuGT > Samples directory but I can't find it. Thanks in advance.
Is there anybody who has a sample program to do this. We wrote a link but sometimes we got the following error: The server returned an exception. We run version 9 of extend with ACU THIN CLIENT Kind regards,
the precompile-step "P(gcc) -E -P -x c -I/home/max/workMax/include ENDP" gets always the error "COBCH0018S Preprocessor error on initialization" Any idea, what went wrong?
Are extension methods still recognized in the latest visual cobol for .net? I have a very simple ext method I am trying out and it does not seem to be recognized. I keep getting the error Undefined Error Contact Tech Support. I have a static extensions class like this. class-id Extensions static. Method-id CountWords(str as string) returning result as binary-long extension static. declare #words as string occurs any = str::Split(' ') set result to size of #words end method. End class. Then my calling method is in another class like this. Method-id SomeMethod() declare a as string = "Mary" declare b as binary-long = a::CountWords End method. Intellisense does not recognize CountWords as an extension and I get the error noted above.#VisualCOBOL
We have a legacy Net Express 3.1 application that just got moved to a new Windows machine along with the runtime files and when invoked we see the EXE running but the screenset is never displayed. We have tried using compatibility mode and a variety of other things but cannot narrow down why it works on one machine and not on another. We do notice on the machines where the screenset is not displayed that the EXE it taking 5-10 percent CPU which it normally does not on a machine that displays it correctly so I am assuming it's cascading an error but we cannot see it. The OS versions involved in the test are Windows 7, server 2008 and 2012. Is there any way to debug the program or screenset on the offending machine without recompiling? Thanks for any information.
I installed NetExpress 6.0 on a development machine and went about trying to compile a module. The code here at my new job is uses copybooks for everything. The Properties tab in the menu under Project is disabled. When I compile a module it fails because NetExpress can't find the copybooks. Any assistance is welcome.
Can anyone convert this to visual cobol .net. I am having trouble with the byte array. using (RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider()) { byte[] buff = new byte[Convert.ToInt16(saltsize)]; rng.GetBytes(buff); return buff; } What i have thus far is local-storage section. 01 buff type Byte[] occurs any. perform using rng as type RNGCryptoServiceProvider = new RNGCryptoServiceProvider set buff to buff[type Convert::ToInt16(saltsize)] end-perform#VisualCOBOL
The tutorials for creating a web application with visual Cobol state I must select WEB under the COBOL template. The only options I have are Managed and Native. What do I need to install to get the WEB option? Thanks Shirley
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.