RE: Dialog System with Visual Cobol
Hello,The problem is that you do:move 0 to main-optionsYou should do instead:move 1 to main-optionsAccording to the documentation "Options should contain 0 for launch and 1 for load."Regards,
View ArticleDialog System with Visual Cobol
Hello,i'm trying to migrate from NetExpress 5.1 to Visual Cobol.Our program uses Dialog System Screens.In NetExpress runtime and delevopment environment everything is working fine.Bur when I run the...
View ArticleRE: Error 173 SQLADR
Hello,The only time I have seen the error 173 on SQLADR to occur is on the first SQL statement, mostly the SQL CONNECT, in the program.There must be something different between your project A and...
View ArticleRE: XML Method
Thanks for your input!That was the direction I was going, but wanted to get a second opinion, of sorts.With communicating to the web side of things, I've already had to do some XSLT manipulation, so...
View ArticleRE: XML Method
Happy to help. I don't know what XSLT/XML editor you may be using. I favor Stylus Studio, and have been using it for years. It has a drag-and-drop mapping for XSLT that is reasonably good for...
View ArticleLambda expression and Linq
Hi!In this new version of VC, it's possible to use linq or lambda expressions, like, "myList.ForEach(x => Console.WriteLine(x));" ?
View ArticleRE: Lambda expression and Linq
About use the "ForEach" of list class, I solved... invoke myList::ForEach(delegate using x as type String invoke type Console::WriteLine(x)...
View ArticleRE: Lambda expression and Linq
This should work, but I think the delegate for the Where method needs to return a boolean (condition-value in COBOL), so something like this: $set ilusing"System.Collections.Generic" $set...
View ArticleRE: Product license error
HI Chris,As per your instructions i have installed cobol server 2013 and created share folder serverbin for other local workstations to launch the application.Everything works great in our test...
View ArticleRE: Product license error
Hello,You opened a Support Incident regarding this issue today. I already sent you an email with several questions, and I have been waiting for answers. Can you please update the Support Incident?Regards,
View ArticleProduct license error
We have converted NX based dialog system to Visual cobol dialogs and generated the application dll’s using Visual studio 2013 and it works good as expected in my development environment.I have deployed...
View ArticleMicro Focus Data File Tools 2.3.1.012 (Test)
Chris, when it will be available the Micro Focus Data File Tools 2.3.1.012? The test version I have does not generate the structure. She does not recognize the IDY File generated by the Micro Focus...
View ArticleRE: COBOL colorization missing?
Hi DMonnot,From your description it sounds as though your Visual Studio registry settings may be incomplete or corrupted. I would recommend that you try the following command :devenv /setupIf that does...
View ArticleRE: COBOL DB2 PROCEDURE
I update my COBOL code as: identification division. program-id. DB2PROC. environment division. configuration section. data division. linkage section....
View ArticleRE: COBOL colorization missing?
First, as Navy developers, our accounts don't have any admin privileges on or PCs. All software installation/updates are performed while a privileged "PC admin/Installer" account is logged on.Second,...
View ArticleCOBOL DB2 PROCEDURE
I am new to COBOL language. After I studied through the tutorials with Visual COBOL. I tried to write my first DB2 stored procedure.This is my environment setup:Windows 10 Enterprise Edition. I...
View ArticleRE: COBOL DB2 PROCEDURE
I use below code to verify that DB2 Express Edition does support OUT parameter. I create a simple DB2 stored procedure:CREATE OR REPLACE PROCEDURE DB2PROC_DB2 (IN INPARAM CHAR(20), OUT OUTPARAM...
View ArticleRE: Change Image in a Button
Hi ChrisI apologize for not having answered before but I have a problem using Visual Cobol that have delayed development.I have tried your solution and it works well.I will try to adapt it to menuitem...
View Article