Quantcast
Channel: Visual COBOL - Forum - Recent Threads
Browsing all 4356 articles
Browse latest View live

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 Article


Dialog 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 Article


RE: Dialog System with Visual Cobol

Thank you very much. This has solved the problem.

View Article

RE: 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 Article

RE: 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 Article


RE: 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 Article

RE: Error 173 SQLADR

I opened a ticket.  Thanks, Fano.

View Article

Lambda 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 Article


RE: 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 Article


RE: 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 Article

RE: 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 Article

RE: 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 Article

Product 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 Article


Micro 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 Article

RE: 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 Article


Image may be NSFW.
Clik here to view.

RE: COBOL DB2 PROCEDURE

I update my COBOL code as:       identification division.       program-id. DB2PROC.       environment division.       configuration section.       data division.              linkage section....

View Article

RE: 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 Article


COBOL 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 Article

Image may be NSFW.
Clik here to view.

RE: 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 Article

RE: 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
Browsing all 4356 articles
Browse latest View live