Forum Post: RE: Duplicate Field Delcaration
Hi Ahmet, could you possibly attach the contents of the copy files as well as the main source file, so that I can try to reproduce this issue? It looks as though it may be a problem due to the...
View ArticleForum Post: RE: Duplicate Field Delcaration
account-service-record is the file content, it was visible when I copied it -I'm using Visual COBOL 2.2 Regards
View ArticleForum Post: RE: Duplicate Field Delcaration
Ok, by deleting the two COPY statements, I was able to compile this (single) program with ILSMARTLINKAGE. However, I am not seeing any error. It occurs to me that the error is not necessarily...
View ArticleForum Post: RE: Duplicate Field Delcaration
Ahmet, Please zip up your project and e-mail it to me at chris.glazier@microfocus.com so that I can take a look. Thanks.
View ArticleForum Post: RE: Duplicate Field Delcaration
Sorry, I had forgotten that things have changed somewhat in the 2.2 Update 1 version of the product. With the Update 1 version you should find that, instead of all the cryptic messages that you...
View ArticleForum Post: RE: Failure at ILASM Phase
Hi Ahmet, Is this error related to the other posting that you have made about the duplicate names being caused by using the same linkage section parameters on multiple programs when using...
View ArticleForum Post: RE: Failure at ILASM Phase
It's related Chris, I am sorry for the conceptually duplicate posts.
View ArticleForum Post: Returning multiple fields in one method
Is there a way in visual cobol to do the following? public Boolean CheckIsInt (string passedString, out Int32 returnedInt) { return Int32 .TryParse(passedString, out returnedInt); }
View ArticleForum Post: RE: Returning multiple fields in one method
Yes, COBOL can do REFERENCE and OUTPUT parameters, so in this case something like: method-id CheckIsint. procedure division using by value passedString as string, output returnedInt as binary-long...
View ArticleForum Post: ILSMARTLINKAGE Doesn't Generate Record Object
Hi, The problem is either with my mind or with ILSMARTLINKAGE or C#! Why doesn't this code generate the TransactionRecord object while the complier does generated it for another classes!?...
View ArticleForum Post: RE: ILSMARTLINKAGE Doesn't Generate Record Object
Hi Ahmet, I tested this here and it works fine for me. I added your program to an x86 managed class library project and added the SQL(DBMAN=ADO) and ilsmartlinkage directives to it. I then created a...
View ArticleForum Post: RE: ILSMARTLINKAGE Doesn't Generate Record Object
Ahmet, Are you using both ilsmartnest and ilsmartlinkage when compiling your project now? If you are then the record name will be prefixed with the program name when accessing from a C# program. using...
View ArticleForum Post: RE: ILSMARTLINKAGE Doesn't Generate Record Object
I am not using ilsmartnest, I am just using ILSMARTLIKAGE alone
View ArticleForum Post: Exception: Expected Identifier or quoted identifier
Hi, Can anybody help me out in getting this query to work? I've tested it on the sql command line and it works perfectly but when I try to run the project it produces that error in the post title, I...
View ArticleForum Post: RE: Exception: Expected Identifier or quoted identifier
Since the query runs ok in sql manager, it must be in the oher code not in the select statement. Could it be the EXEC ADO on the "Get Cursor" statement that you are using where you are using EXEC SQL...
View ArticleForum Post: Hexadecimal VALUE in a Website
When a webform calls a COBOL program with a hexadecimal value in it, the website is able to compile but when it runs it throws a runtime exception on the CALL statement. Example webform codebehind:...
View ArticleForum Post: RE: Hexadecimal VALUE in a Website
I am assuming that the error message that you are receiving is a RTS 198 or some error about a Code Page conflict, is that correct? The problem would occur because the web site itself (the .aspx file)...
View ArticleForum Post: RE: Exception: Expected Identifier or quoted identifier
Thank you dmccann, I've moved the headache to the database ;-) by creating a view of the upper query and selecting whatever I want from it but, the view query still needs optimization! Regards
View ArticleForum Post: Android
On this .... Before you start To run the demo you need to install the following: Visual COBOL for Eclipse for Windows, R4 Update 2. AndroidForCommunity AddPack – downloadable from SupportLine (Visual...
View Article