Micro Focus - Net Express 5.0 (university Edition)
Oct 29, 2017 Micro Focus Net Express (cmd.exe). Net Express brings together the most powerful COBOL development, test, and deployment tools available today. Since the first edition was published in. Although Murach's Mainframe COBOL is a great first book for learning how to develop and maintain COBOL programs on. Net Express and Server Express have been the trusted and proven choices for distributed. Audi Manual For A6. Net Express™. 'Micro Focus is an. Install net express 5.1 without microsoft visual studio 2008.micro focus servert for cobol and micro focus servert for.net.resolution: the netexpress 5.1 installation.
From Micro Focus Net Express with.NET is the market-leading COBOL development environment for extending core business processes to the.NET Framework and other distributed platforms. Powerful integration with Microsoft Visual Studio and the.NET Framework plus direct COBOL Web services capabilities, J2EE connectivity and XML support allow easy integration of existing and new COBOL applications with leading enterprise technologies.Micro Focus Net Express provides a complete environment for quickly building and modernizing COBOL enterprise components and business applications. Full Specifications What's new in version 5.1 Version 5.1 features support for Standard COBOL development, and for.net up to version 3.5.
General Publisher Publisher web site Release Date February 05, 2010 Date Added July 21, 2008 Version 5.1 Category Category Subcategory Operating Systems Operating Systems Windows XP/2003/Vista/Server 2008/7 Additional Requirements Visual Studio 2008 Download Information File Size 153.98MB File Name NXP. Adobe Photoshop 7.0 Filters Plugins Free Download. exe Popularity Total Downloads 58,688 Downloads Last Week 0 Pricing License Model Free Limitations Not available Price Free.
After much talk about OO COBOL, as it were, I finally decided I would spend a bit of money to try it out. I bought Micro Focus Net Express 5.0 'University Edition'. Technically, I got 'Net Express 5.0 University Edition and Visual Studio* Software and Book Shipment Non-Student'. This includes: Micro Focus Net Express 5.0 Microsoft Visual Studio 2005 the book 'COBOL and.NET, second edition' Total cost: $194.00 All in all not too bad, I guess. Especially considering that buying just Visual Studio 2005 Standard Edition directly from Microsoft costs $299! Not sure how MF swung that deal.:-) Anyway, I've only had it a few days and I'm fairly happy. Documentation could be better.
The first few days I've been working with VS and the.NET environment, because I was already familiar with it from using Visual C# Express Edition and Visual C++ Express Edition. Angry Birds Go For Pc there. Haven't come upon any real issues there that I can think of at the moment.
I am now looking just at the Net Express IDE, etc. Pretty blah IDE compared to VS.
I just tried the example 'pclass.app' in the ISO2002 examples directory. I've found two errors so far! One, the source file 'Student.cbl' was not included in the app project. Two, the 'finalize' method of the String class in 'String.cbl' has a syntax error. It has exit program When it should have exit method. After fixing those two things I got it to compile. Haven't even run it yet.
But it sure makes me leery of their quality control process! I wonder what else I'll run into. What would be the best way for me to report these (and other?) issues? One other thing I noticed, by accident actually, is a few nice extensions to COBOL2002.
While coding an INVOKE statement I accidentally typed: Invoke o::'mymethod' Instead of Invoke o 'mymethod' To my surprise it compiled and worked with no problem. Turns out this is an MF extension. It actually allows you to code something like Invoke o::'mymethod'(parm1, parm2) Instead of Invoke o 'mymethod' using by value parm1 parm2 While I understand that the second, standard way is more 'Cobolish', I must say I actually prefer the MF way.
It's less verbose and, to my mind (being familiar with other OO languages such as C++, Java and C#) easier to read. I haven't been able to actually find reference to this extension in the actual MF documentation, but it is referred to on page 122 of the 'COBOL and.NET' book.
Additionally, one can refer to properties in the same manner. Let's say I have a class with a working-storage item defined as: 01 myproperty pic x(10) property. I can refer to it as follows: move 'abcd' to o::'myproperty' display o::'myproperty' With standard COBOL 2002 I would do this: move 'abcd' to mypropery of o display myproperty of o But that's not all. I also need to have repository. Property myproperty. In the Environment Division. I believe this is because using the 2002 standard myproperty is an identifier, and therefore must be 'declared' before it can be used.