Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
A demo of the window1 pre-processor supportwindow1.zip
It is possible to do this in VCAttached is the C # projectusing System.Runtime.InteropServices;namespace GUI_V_2{public partial class Form1 : Form{public Form1(){InitializeComponent();}[DllImport("user32.DLL", EntryPoint = "ReleaseCapture")]private extern static void ReleaseCapture();[DllImport("user32.DLL", EntryPoint = "SendMessage")]private extern static void SendMessage(System.IntPtr hwnd, int wmsg, int wparam, int lparam);private void BarraTitulo_MouseDown(object sender, MouseEventArgs e){ReleaseCapture();SendMessage(this.Handle,0x112,0xf012,0);}Obrigado!
I have install VCobol for VS2019 and my windows crashed suddenly now I have to reinstall windows and the question is how to retreive back my license?
Hi.I encountered some issues when using eclipse.Can you tell me how to solve the issues below ?[Issue]When authorization has passed, I restart eclipse but JVM error has occured (Figure2_jvm_error_253.jpg).[Product]Visual COBOL 6.0 for Eclipse for Red Hat x86_64A history of my steps executed are listed as following:(1) I installed "Visual COBOL for Eclipse for Red Hat x86-64" to RHEL version 8. No error had appeared when installing (Figure1_Capture_of_Installation_complete.jpg).(2) After installing, I started eclipse at path on /opt/microfocus/VisualCOBOL/eclipse/eclipse. On first boot, following error has occurred (refer to Note1_1st_boot_error_on_eclipse.txt): > java-1.8.0-openjdk > java-1.8.0-openjdk quit unexpectedly > Problem details > reason > java killed by SIGTRAP > crash_function > WebKit::ProcessLauncher::launchProcess() However on second boot, above error was not shown.(3) Then I boot eclipse, "Product Liscensing" dialog box was
I'm running Visual Studio 2019 with VC 5 PE. The license on VC 5 has just expired.Do I have to re-license VC 5 PE or wait until VC 6 PE is available? When will VC 6 PE be available?Thanks
Problem The environment variables for CTF Tracing and Database Connectors are set as System Environment variables, and the generated CTF Trace file does not show the detailed Database Connectors information. Solution The issue could not be reproduced with the MFTRACE_CONFIG and A_CONFIG environment variables set from the system level. Although these environment variables can be set from the system or project level, it is recommend to set MFTRACE_CONFIG from the project level in the Visual Studio IDE. Setting this environment variable from the system level causes devenv.exe (Visual Studio IDE) and msbuild.exe to be traced as well, which may cause a performance issue depending of the size of the projects.
When you get license invoice details for ACucobol that provides the Product Code and License type,,, do you also see a "License Type"? If so what sort of values do you see in here?Is this supposed to identify the License options "Named Users", "Concurrent users" or "Server (CPU)". If not where else can you determine these options? jim
I'm new to Visual Cobol 6.0 and I'm searching for the Panels demo project. I've looked everywhere on my Windows 10 machine looking for panelex1.cbl, etc. Do these exists somewhere I've not looked? Any input would be appreciated. Thank you.
APRA AMCOS is a music rights organization representing over 100,000 songwriters, composers, and music publishers. APRA AMCOS licenses organizations to play, perform, copy, record, or make available its members’ music, and distributes the royalties to its members. APRA AMCOS is affiliated with similar collecting societies around the world. So when Australian and New Zealand songs and compositions are performed overseas, Australian and New Zealand writers get paid. The challenge was to accommodate a massive increase in streaming music data locally and globally, by modernizing a dated IT infrastructure. Read the full story and how this was done with Visual COBOL here. #CustomerStories
FordonsData is a leading software provider in Sweden, delivering a Dealer Management System (DMS) for the automotive industry. A supplier to many brands including BMW, Citroën, Fiat Group, Ford, Honda, Hyundai, Kia, Lexus, Mazda, Mercedes-Benz, Mitsubishi, Nissan, Opel, Peugeot, Toyota, and Subaru, FordonsData has more than 600 corporate customers. Every day, over 9,000 automotive retailer employees rely on its different systems to support them in their daily tasks. The challenge was to move from a monolithic, waterfall-driven development model to an agile and flexible environment to respond faster to business requirements. Read the full story and the solution here. #CustomerStories
With Visual COBOL 6.0, was there a change to the supported Eclipse versions?
Created On: 21 February 2011 Problem: How do you use Regular Expressions to search strings in a COBOL application? Resolution: Regular Expressions can be run using an ACUCOBOL-GT routine called C$REGEXP. A sample program is attached to this article to show the basic steps to follow to work with this routine. Incident #2502571 Old KB# 33411TESTREGEXP.zipTESTREGEXP.zip#TipfromSupport#File
Problem: I have a third-party assembly that is stored on a network drive. If I add a reference and browse to the location using UNC e.g. \\\\RemoteAssemblies\\MyReference.dll, the following errors occur : How can I ensure the reference is added correctly? Solution: The UNC path can be added to the Namespaces References Paths list in the project properties : Add the UNC path you require : Now Add Reference and Browse to the UNC path and choose the .DLL you require : The Reference will be added : The two errors : Error COBCH0845 Unknown type 'type BasicEncrypt' … and Warning MSB3245 should not occur.
Now Available: Visual COBOL 6.0 Micro Focus is delighted to announce the latest release of its market leading solution for COBOL application modernization on distributed platforms -- Visual COBOL 6.0 This update delivers NEW automated code refactoring tools designed specifically for Micro Focus COBOL applications. By using these tools, developers can reduce application complexity often associated with monolithic systems. In addition, key business rules can be exposed as REST APIs using the Micro Focus web services framework, which has now been extended to support containerized and orchestrated deployment either on premise or within public cloud infrastructure. Visual COBOL 6.0 also delivers even greater platform choice for Enterprise application deployment using Ubuntu and CentOS Linux distributions. Key release highlights include: NEW COBOL refactoring tools enabling developers to visually extract, reuse and deploy business logic as REST APIs Expanded suppor
Is this version released after webinar?when i register for trial, i will not receive a mail with download possibility, not for Personal Edition, not the 30 Day version?Can you publish the link or the mail address to the contact person?thanks
I'm trying to initialize a Boolean value in a managed COBOL project, but I cannot find in the documentation on how to do this.The last line in the following code excerpt results in an "COBCH0229 Incompatible qualifiers" error:CLASS-ID X.Form1 IS PARTIAL INHERITS TYPE System.Windows.Forms.Form. WORKING-STORAGE SECTION. 01 isItTrue PIC 1 USAGE IS CONDITION-VALUE VALUE TRUE. How can I initialize a Boolean value in the WORKING-STORAGE SECTION?
It is possible to pass parameters between threads:I have the program start and I need to populate a grid but I want to do it in the background.It is necessary to pass the type of product that should be loaded on the grid, type of wheel or tires for example:method-id NEW.procedure division.invoke self :: InitializeComponentgoback.end method.method-id Form1_Load final private.procedure division using by value sender as object and type System.EventArgs.*> ------------------------------------------------ -----------------------------------*> today I do this, fill a bindingsource but if you have a lot of registration it takes a while.declare fPdto as type cadProdutos = new cadProdutosset bindingSource1 :: DataSource to fPdto :: encheProdutos (Lnk-Produtos)*> I would like to switch to a thread*> ------------------------------------------------ -----------------------------------declare thread1 as type Threaddeclare myobject as type ThreadWork = new ThreadWorkdeclare threadDelegat
Hello,I have a WPF application and I am using a local MySql database.I don't know if it will be the best way or not, but I am using ODBC as a way to access the database.The customer now wants to place the database in the cloud and would like to know if it is enough to reconfigure the database path in the ODBC parameterization and, if so, what parameters of the cloud I need.ThanksAlberto Ferraz
Hello Experts,01 WS-URL-PATH-CM. 05 WS-URL-IE PIC X(48) VALUE "C:\\Program Files\\Internet Explorer\\iexplore.exe ". 05 WS-URL-CM PIC X(2000).call "C$SYSTEM" using WS-URL-PATH-CM.when we execute this above call, it is opening the web browser, but till i close the web browser the above call is active and not able to access(hang) my product application which has built in AcuGT cobol. Using the above call , I want to execute webbrowser and cancel the same call and go and execute further my logic in my program. that means, my program should execute that web browser and leave the browser and come to program for further execution,how do i do that please? if my question is not clear,then write here pleas.
We're migrating from NE/SE to VC/Dev Hub, our target platform is HPUX.If I take our build script on HPUX, honed to perfection over the years that use the stderr directive and redirect output from the compiler to an .out file and an .err file. If we use Dev Hub instead of Server Express, one mildly irritating thing happens with code using cobsql/procob.Messages from procob, i.e.* Micro Focus Cobsql Integrated Preprocessor* CSQL-I-004: Accepted csqlt=ora8* CSQL-I-005: Passing config=$CFGDIR/procob_dinka.cfg to ORACLE8 Precompiler* CSQL-I-008: Invoking cp Preprocessor* CSQL-I-018: Invoking Oracle Precompiler/Translator* CSQL-I-020: Processing output of ORACLE8 Precompiler* CSQL-I-001: Cobsql has finished returning to the Checkerthat for decades have ended up on stdout, i.e. our .out file now get written to .errThe build script checks the return code from the compiler. For anything other than zero an error is assumed, and the .out and .err files are retained. If the compiler returns
Hello,I recently started using MF Visual COBOL and importing old programs I've done using MS COBOL back in 1995.I noticed that some of screen section statements aren't functional under MF Cobol especially the ON ESCAPE condition in ACCEPT statement,Any idea how to make it work??** below is the a sample program that use Accept... ON ESCAPE..IDENTIFICATION DIVISION.PROGRAM-ID. NEHMECHP as "NEHMECHP".AUTHOR. NEHME YOUNES.ENVIRONMENT DIVISION.CONFIGURATION SECTION.INPUT-OUTPUT SECTION.FILE-CONTROL.SELECT F-CHP ASSIGN TO DISKORGANIZATION IS INDEXEDACCESS MODE IS DYNAMICLOCK MODE IS AUTOMATICRECORD KEY IS CHPNUM.DATA DIVISION.FILE SECTION.FD F-CHPBLOCK CONTAINS 105 RECORDSRECORD CONTAINS 39 CHARACTERSLABEL RECORDS ARE STANDARDVALUE OF FILE-ID IS "CHPBNY.DAT".01 RCHP.02 CHPNUM.03 SUB-LDGR.04 GEN-LDGR PIC 99.04 NUM PIC 9.03 CHAPTER PIC 9.02 CHPNAME PIC X(35).*****WORKING-STORAGE SECTION.77 SW PIC X VALUE SPACE.77 SW1 PIC X VALUE SPACE.77 MSG PIC X(40).77 W-NAME PIC
i don't understand why download files are not on the same places and no Information for the 2 possibilities:1. Visual Cobol 5.x Personal Edition, free/validity for 1 year, limited to 2200 program lines only up2 is necessary and disponible2. Visual Cobol 5.x Trial Version, free/validity 1 month, no Limitation for this Version, only up2 is necessary and disponibleFor this two Versions, why the updates files are not visible/disponible for all students, testers for the durability for 1 month or 1 year. This will have Errors that will be send on Support, that is not necessary.i hope that MF will answer positive for all this customers and interessed persons on VC
We are moving from Net Express to Visual COBOL and a lot of the developers want the text editor in Visual COBOL to behave in the same way as the Net Express editor. I am aware of some of the settings you can make in Visual COBOL (e.g. enable virtual space), but I haven't found out how to get exactly the same behaviour. Is that even possible? Most problems arise when you paste code from other editors (and I posted a question about that some weeks ago and got the answer that that will be fixed in version 6), but there are other issues as well. So, is there a "Net Express" setting you can use in Visual COBOL?
The RANDOM function documentation page doesn't give sufficient information on the range of accepted values for argument-1.Perhaps someone can shed light on my following two questions:What range of seed values is accepted?How are values treated that are exceeding the allowed range? » Are they truncated? » Are only the lower bits used? » Or the upper bits? » Are the leftmost digits used? » Or the rightmost? » How many of them? » Is a `MOD` function applied to the seed value?It is common to use the current date/time as a seed value for RANDOM to get a "truely pseudo random" sequence. So I used below piece of code to create an appropriate seed value. But I have no clue on how the seed value I'm providing to the RANDOM function is processed by the compiler.If the compiler only took the first few digits (which is the date part) then this wouldn't result in different random sequence resul
Scot Nielsen previews some of the refactoring capabilities of the upcoming Micro Focus Visual COBOL 6.0 release. Register for the release webinar here. Watch the full preview video here. #Videos#Webinars
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.