RE: Error in debuging
If the server was upgraded to a new release of .NET you may need to verify that all the applications using .NET we also upgraded to the same release. I base this on our experience here when SYS Admin...
View ArticleRE: File remains locked after managed COBOL returns to ASPX caller
As jholland states, you can add exception handling around the call statement using try/catch syntax so that you can close the file before the exception is passed back to the main program. In this...
View ArticleRTS 198
hi,I'm using "Micro Focus COBOL Server 2.3.1142" on Windows Server 2012.The same program compiled with Enterprise Developer 2.3.1 (Eclipse version) with same input data on my server work fine, instead...
View ArticleRE: RTS 198
An rts 198 can mean a number of things. What happens is you just execute RUN.EXE without the command line? do you get an error?It could mean that the .dll you are trying to run has a dependency on...
View ArticleRE: File remains locked after managed COBOL returns to ASPX caller
jholland's suggestion, as I understand it, would require adding FILE STATUS clauses to every SELECT statement in over 250 programs, plus logic code after every IO statement to test-and-branch. We were...
View ArticleFile remains locked after managed COBOL returns to ASPX caller
Our application is a collection of originally Unisys mainframe tasks (IBM jobs) that over the last 18 years we have converted to Object COBOL, then Net Express, and finally Visual COBOL 2.3 for VS 2013...
View ArticleCobol calling C#
We are replacing our legacy Cobol security programs with a new Security System which runs as a Web Service. Working with legacy code, I have an unmanaged cobol subroutine (SUBR01) that is compiled as a...
View ArticleRE: Cobol calling C#
Have you debugged the C# DLL01 program and checked the parameters being passed in both when being called from a console app and being called from a web site?You state that the web site is an unmanaged...
View ArticleRE: RichTextBox
Hello,I had already realized that it was not easy but I will try with the example that sent me.Thanks
View ArticleRichTextBox
Hi again,Now I have the problem of replacement of variables resolved need a field to write the original text (which contains the variables to be replaced).I was looking for and I think I have two...
View ArticleCalendar in WPF
Hi,Is there any way the calendar position without being the month in which we are?I have two calendars: one for check-in and one for check-out.Walking with the left (check-in) for June and click on 10...
View ArticleRE: File remains locked after managed COBOL returns to ASPX caller
I was referring to adding a try catch block around the call statement that may cause the RTS 173 to occur or some other run-time error that occurs within the same program in which the file has been...
View ArticleDefault connection
In my code I have the connect statement like this: connect / It connect to oracle database (unix)Is it possible to connect to default ado connection?
View Articledd_ variable
Where can i set this variable in managed console application? in native console application I put it in enviroment
View ArticleRE: Export to excel
Hello Chris, That worked! But have got a problem now , which I was trying to fix but failed to. I am just getting an empty spreadsheet each time i do the export.
View ArticleRE: Export to excel
BackgroundThere often is a need in a project's reporting module to show records of a GridView in an Excel sheet, so to do that I decided to write this article, especially focusing on beginners and...
View ArticleExport to excel
Can anyone please give me an example of export to excel using Visual COBOL in asp web forms ?
View ArticleRE: Default connection
There is no such thing as a default ADO connection. You need to specify a connect string to point to the ADO provider that you wish to use along with connection information such as authentication...
View ArticleRE: dd_ variable
Setting environment variables used for file assignments can be done in a number of locations. You can set them at the system level using Control Panel or they can be set in a .bat file prior to opening...
View ArticleRE: File remains locked after managed COBOL returns to ASPX caller
But all of the calls to COBOL programs occur at the aspx program level. No COBOL program calls any other COBOL program. The aspx programs are replacing native COBOL console .exe programs which...
View Article