Forum Post: RE: Personal Edition Wont Authenticate
I cannot get this to fail. I was initially testing under Windows 7 and I can install and authenticate both VC for VS2015 2.3 PE and VC Eclipse 2.3 PE without a problem. I just tested the same thing...
View ArticleForum Post: RE: Personal Edition Wont Authenticate
I'm using enterprise in really wouldn't want to go to PE . I'll send screenshots to you detailing what I've done.
View ArticleForum Post: RE: Personal Edition Wont Authenticate
I think that you are confusing the products here. Visual Studio 2015 Enterprise is fine to use. Visual COBOL PE is the Personal Edition of Visual COBOL which is the product that you have downloaded...
View ArticleForum Post: RE: Personal Edition Wont Authenticate
I know that, I was assuming you would be giving me product key for VS not visual cobol. If you can provide the product key for a student 1 year that'd be great to try. No luck so far after reinstall
View ArticleForum Post: RE: Personal Edition Wont Authenticate
I cannot give you a product key for Visual Studio as that is not a Micro Focus product. You must license that through Microsoft. I will send you a 1 year key for the Visual COBOL PE product for Visual...
View ArticleForum Post: RE: Personal Edition Wont Authenticate
You can get a free edition of Visual Studio via the website. It is Visual Studio Community Edition 2015. I am using this with my visual cobol and all works well. Might I add look into JetBrains...
View ArticleForum Post: Compile Visual Cobol for .EXE
I am confused about compiling Visual Basic programs. When I create a "NATIVE" Cobol Command Line Application and then use the compile option under the Visual Studio Menu item "BUILD" it compiles just...
View ArticleForum Post: RE: Compile Visual Cobol for .EXE
Have you right clicked your project in the Solution explorer, select the Application tab and looked at the Output type? It probably has INT/GNT, select the drop down and change it to "Console...
View ArticleForum Post: RE: Compile Visual Cobol for .EXE
What files do you see in C:\Users\donc\Documents\Visual Studio 2015\Projects\ConsoleApplication3\ConsoleApplication3\bin\x86\Debug\ ?
View ArticleForum Post: .Net Cobol
What is the .net cobol equivalent to the following C# code? I just need to know the equivalent to the ++ operator and how I would write score++ in .net cobol. int score = 1; if...
View ArticleForum Post: RE: .Net Cobol
Unless I am missing something, you could do this: Add 1 to score or this: Compute score = score + 1 or this: Set score = score + 1 To my knowledge, there is no built-in increment or decrements...
View ArticleForum Post: RE: Compile Visual Cobol for .EXE
Thanks for the reply. It is set to Console Application, What directory should the default .exe be created in? See Screen
View ArticleForum Post: RE: Compile Visual Cobol for .EXE
I overlooked a word you mentioned initially. You use the "compile" option, which only compiles for syntax checking. You need to use the "Build" or "Rebuild" option in order to create the .EXE, which...
View ArticleForum Post: RE: Debugging
Ok I moved all to linkage section, this is fine, but I have problem with this: move 471604 to mem-size call "CBL_ALLOC_MEM" using ptr3 I got error 157 - out of memory. I can't allocate this memory size?
View ArticleWiki Page: How do I access the Micro Focus Data Tools from within the Visual...
Problem: I want to use the Micro Focus Data Tools from within the Visual Studio IDE. How do I do this? Resolution: Add the MF Data Tools to the Tools menu within the IDE. From within the Visual Studio...
View ArticleForum Post: RE: Looking for Resource
Please contact me. I have someone in the LA area who may be able to assist.
View ArticleForum Post: RE: Debugging
You are setting mem-flags to a 1 which indicates that you wish to allocate shared memory. In the docs under CBL_ALLOC_MEM it says: The maximum size of shared memory is restricted by the operating...
View Article