Forum Post: Unit Test Framework
Hi All , Does Unit Test Framework only works for Native Cobol codes ? I tried using mfurun for Managed COBOL codes but i am unable to execute the scripts. What are the other limitations ? Can i used...
View ArticleForum Post: RE: Dialog System
My colleague Kim now has an open support incident for you and I am working with him to try to solve your problem. I cannot recreate the issue using the same product version in either VS2015 or VS2015...
View ArticleForum Post: RE: Unit Test Framework
The Unit Test Framework will work on native procedural programs and managed procedural programs. If you are compiling to managed then you would use mfurunil instead of mfurun. Documentation for...
View ArticleForum Post: RE: String handling; carriage return line feed (new line); 0d0a
The Esc characters \n, \r and \r\n are specific to C# and do not mean anything to COBOL. In COBOL you can use hex constants to define these characters for example X"0D" for carriage return and X"0A"...
View ArticleForum Post: RE: COBOL Source Format of invoked program when in Debug
Hi Austin1, Can you provide more detail please? What exactly are you invoking here? Are these two programs in the same project or in different projects? Are these COBOL programs or classes? Can you...
View ArticleForum Post: RE: Undefined ECM error
Hi Werner, Can you tell me what the support incident number is for this problem? Are the two systems using the same .NET Framework version?
View ArticleForum Post: RE: File handling in managed Cobol
Please open up an incident with Customer Care so we can take a look. I would also recommend testing this under the latest product release which is 2.3 update 1. Thanks,
View ArticleForum Post: RE: File handling in managed Cobol
Hi Chris, I've already done that. The incident number is 2873608. Kind regards, Mark de Vos
View ArticleForum Post: RE: COBOL Source Format of invoked program when in Debug
Separate Solutions. Nothing really unusual. Just step thru it in Visual Studio debug mode and watch the source margin on the right go from white to grey as it transitions to the invoked program...
View ArticleForum Post: RE: Undefined ECM error
Hi Chris I just opened a support incident, number is 2873929. Both Systems use .NET Framework version 4.5. I am going to check other details, like hotfixes. When I compile the solution I get 10 error...
View ArticleForum Post: Errors migrating from Netexpress 5.1 to Visual Cobol 2.3
Hi, Getting errors during compile time. The same code worked in Net Express 5.1 but having issues in Visual Cobol 2.3 Error 6 COBCH0302 : IF....ELSE or scope-delimiter mismatch COBES0112 :...
View ArticleForum Post: RE: Undefined ECM error
Hi Chris Please see support incident number 2873929. Kim Hoskin can translate the German text. I think you will understand that I don't publish the text in this forum. Regards.
View ArticleForum Post: RE: Errors migrating from Netexpress 5.1 to Visual Cobol 2.3
Can you show what the full syntax in that statement is and what compiler directives you are using? How did you bring the NX code over to Visual COBOL, through the conversion wizard or using a manual...
View ArticleForum Post: RE: Errors migrating from Netexpress 5.1 to Visual Cobol 2.3
Hi Chris, ======================== EXEC SQL WHENEVER NOT FOUND CONTINUE END-EXEC. IF SELQUEUE-1-OPEN EXEC SQL FETCH SELQUEUE_1 INTO :I-KCT-ID-DB...
View ArticleForum Post: RE: Unit Test Framework
Thanks Chris. I was able to write a test case for Managed Procedural pgms ( typically batch programs compiled in managed state). In restrictions it is mentioned that it does not support User Interface...
View ArticleForum Post: RE: Errors migrating from Netexpress 5.1 to Visual Cobol 2.3
Thank you. Can you also show me how the host variables are defined in your program?
View ArticleForum Post: RE: Errors migrating from Netexpress 5.1 to Visual Cobol 2.3
Hi Chris, 01 STRBUFF PIC X(30). 01 WS-FETCH-CNT PIC 9(08). 01 WS-SQLCODE-OUD PIC S9(9) COMP. 01 WS-IX PIC 9(03)....
View ArticleForum Post: RE: Unit Test Framework
That is correct, it does not yet support ACCEPT/DISPLAY testing in your programs. The Unit Testing Framework is in Technical Preview status which means it is not yet in a GA state.
View ArticleForum Post: RE: Errors migrating from Netexpress 5.1 to Visual Cobol 2.3
It appears that you are using a null indicator array that is not actually defined as an array. When you are using host arrays and null indicator arrays both sets of variables have to be defined with...
View Article