Forum Post: RE: Sharing an instance of an object between classes.
I am attaching an example that contains a WinForms project that has a form and a couple of additional classes including one that contains the static method that will either create a new object if...
View ArticleWiki Page: Deploying a web service incurs 'Invalid thread access'
Problem When deploying a service interface to an enterprise server instance, why does Eclipse display an 'Invalid thread access' error message? Resolution When deploying a service Interface, the...
View ArticleForum Post: RE: Adding resouces to project
I do not have a problem with adding a jpg file to a resource file and accessing this within a WinForm program. Right-click on project and select Add-- New Item and select Assembly Resource file. This...
View ArticleForum Post: RE: Link error
I am not familiar with those symbol name. I do not believe that they are Micro Focus symbols. Do you have any call statements in your programs that directly reference these routine names? Thanks.
View ArticleForum Post: RE: Link error
Any chanced of getting a copy of the program to peek at? If there are lots of copybooks use the compiler directive RAWLIST and attach the llisting
View ArticleForum Post: MS Access DCLGEN
Can someone walk me through how to setup a MS Access (accdb) DB to use with VC and how to create a DCLGEN. I have been at this for about 2 months with no luck.
View ArticleForum Post: License Error 26
I had changed my Date while working on a project to test out the Day of week function and now I get a License Error 26- Tampered date issue. What can I do to resolve this. I have a class to teach...
View ArticleForum Post: RE: License Error 26
The error you are reporting will need to be handled over the phone, can you call 1-800-632-6265 and ask for Alex. You should have the serial number for your product (600000123456) and the "Old...
View ArticleForum Post: ADO cursors
We have an issue with ado cursor In visual Cobol. when we open a cursor with exec sql statement it fetch all rows in memory before returns to next statement. That means huge memory needs and alot of...
View ArticleForum Post: Type Casting
Dear community, I need your help in order to cast a type 'dynamically', using the GetType() method to set the target Type instead of hardcoding the Type. Below you can find a simple sample code....
View ArticleForum Post: CALL Stored Procedure
Dear Chris, Do you see any ERROR in the following ?.I am CALL a Stored Procedure in a Cobol Program. EXEC SQL CALL :PROCNAME USING DECLARATOR :COSCMNPRD END-EXEC IF SQLCODE NOT = ZEROS...
View ArticleForum Post: RE: ADO cursors
Try setting the directive SQL(BEHAVIOR=UNOPTIMIZED) for compatibility with Net Express. This will turn off the autofetch feature. There are some other primitive directives under the main BEHAVIOR...
View ArticleForum Post: RE: MS Access DCLGEN
To access any database including MS Access from within a native Visual COBOL program you will need to create an ODBC DSN in order to connect to the database. You can then use this DSN in your EXEC SQL...
View ArticleForum Post: RE: CALL Stored Procedure
Hi Pedro, This does not appear to be valid OpenESQL syntax for the exec sql call statement. Where did that syntax originate? Please see the documentation here for examples. There is also a video which...
View ArticleForum Post: RE: ADO cursors
Thank you for the answer. That was our setting but I have found out that BEHAVIOR=MAINFRAME is the one that make our program works like before. The only difference is that until now we were setting...
View ArticleForum Post: RE: ADO cursors
There is a difference internally in how cursors are handled when using ADO.NET instead of ODBC. If you have BEHAVIOUR=UNOPTIMIZED the cursor will be stored in an underlying Dataset. The actual...
View ArticleFile: OOP webinar 2 demo
Demo file to support OOP for COBOL webinar 2. Missed the webinar? Catch up here .
View ArticleFile: OOP webinar 5 demo
Demo file for OOP for COBOL webinar 5 (Inheritance). If you missed the webinar, you can catch up here .
View ArticleForum Post: OOP for COBOL webinar materials
Please find below reference materials and code samples to support object-oriented programming for COBOL webinar series. If you have missed a webinar, all six are available on demand here . Trial...
View Article