RE: Visual Cobol PE 2.2
This appears to be an issue with all of the product installers for the 2.2 GA products due to an expired certificate on one of the .msi files in the installer.Development is currently working on a fix...
View ArticleRE: Passing Array Between Forms
Hi Brendan, I'm not certain I fully understand what you're trying to do, but could you do something like:class-id Employee.01 Number binary-long.01 Selected condition-value....end class.You can then...
View ArticleRE: Passing Array Between Forms
The following is an example which demonstrates the following:1. main form populates an array with an Employee object like Robert explained.2. Pass this array to a subform where it will be stored in...
View ArticlePassing Array Between Forms
HiI want to pass an array of arbitrary size from one form to another. The array would contain employee numbers PIC 9(9) and a flag to say whether the employee had been selected.Basically, from the...
View ArticleRE: Visual Cobol PE 2.2
Development has now fixed this problem and has replaced all of the 2.2 GA product installers with the new fixed versions.Please try downloading the Visual COBOL Personal Edition 2.2 product again and...
View ArticleRE: Error 0x800b0101
Development has now fixed this problem and has replaced all of the 2.2 GA product installers with the new fixed versions.You should now be able to download the 2.2 GA product versions and install them...
View ArticleRunning Programs without COBOL Server
I notice in the Visual COBOL documentation that the COBOL Server is needed to runprograms outside of the Visual COBOL environment. I am planning on downloading the Visual COBOL Personnel Version to do...
View ArticleRE: Running Programs without COBOL Server
Hi Bob,You cannot deploy applications developed with Visual COBOL Personal Edition under COBOL Server so you would have to get a fully licensed version of Visual COBOL and COBOL Server products when...
View ArticleRE: visual Cobol Embedded
Hi Pedro,Can you please provide some more detail?What database are you using and where is the program actually running, under AIX or under Windows?What is the definition of DCL_Table in your...
View ArticleVisual Cobol Embedded
Dear Chris, What database are you using and where is the program actually running, under AIX or under Windows?The database is SQL SERVER 205. The program RUN under Windows and under AIX 7.1. Under AIX...
View ArticleRE: visual Cobol Embedded
We are Using SQL Server 2005 in Windows 2008.What is the definition of DCL_Table in your program?The Declare Table is :EXEc SQL DECLARE DataDima.dbo.dim_ojala Table ( [CAMPO1] [NUMERIC] (1) NOT...
View Articlevisual Cobol Embedded
Dear All,When we execute a Select * From Table INTO :DCL_Table we get the content of all columns of this Table without problema. Here we are in the Line Command of AIX 7.1 previus Connect to the Data...
View ArticleRE: visual Cobol Embedded
String data, right truncation (SQLCODE +000000001)Dear Chris,Maybe is the same Error Like this.......Problem:Error occurs on select and insert of data via OpenEsql to sqlserver.String data, right...
View ArticleRE: visual Cobol Embedded
Pedro,What are the values of sqlcode, sqlstate and sqlerrmc after the SELECT?These should tell you exactly what the error is.
View ArticleRE: visual Cobol Embedded
Dear Chris,sqlcode : +000000001,sqlstate : 02000sqlerrmc : Spaces
View ArticleRuntime error on Sort
I am getting a runtime error performing a Sort. The extended File Sttus is 011. Which according to the documentation (if I am reading it right) states that it is the following. How can I get this to...
View ArticleRE: visual Cobol Embedded
sqlcode 2000 would mean no data found but sqlcode 1 means that one of the warning flags should be set.Are any of the SQLWARN fields set to "W" after the select?These have the following meaning:SQLWARN...
View ArticleRE: Runtime error on Sort
What product version and OS are you running under?If this is a very large file it is possible that you are running out of memory.Take a look in the product docs under environment variables SORTSPACE,...
View ArticleRE: Runtime error on Sort
Windows 7 and Visual Cobol 2.2. Is there a way environment variables can be set in the Visual Studio IDE or must they be set programatically.
View ArticleRE: Runtime error on Sort
You can now set environment variables for when you run native projects from within the IDE from the project's properties - click Environment on the Application tab in the project properties.
View Article