RE: COBOL Web Application, no errors, but build fails
To follow up, when I remove the web application from the new solution, the Start_up project builds and starts properly. So I know it's the other application that is the culprit. I'm just not sure where...
View ArticleRE: COBOL Web Application, no errors, but build fails
I increased the verbosity of the output window during a build. Got that from this link:blogs.msdn.com/.../did-you-know-you-can-configure-the-msbuild-verbosity-in-the-output-window-329.aspxThis enabled...
View ArticleCOBOL Web Application, no errors, but build fails
I am having an issue with a web application. We are migrating from a mainframe environment to a Microfocus web application. We have web applications for different transactions. There are several web...
View ArticleVisual Cobol Compile Error
Just installed Visual Cobol and was working through the course to learn to use it. When I got to the WebDemo program I get the error Message that says "Make sure that the class defined in this code...
View ArticleRE: Visual Cobol Compile Error
This appears to be a problem when using the Visual Studio 2012 Shell and trying to create an ASP.NET Web Site. This works fine when using a full version of Visual Studio 2012 like professional,...
View ArticleRE: Visual Cobol Compile Error
Chris, I have Visual Studio Professional 2012 Version 11.0.50727.1 RTMREL.
View ArticleVisual Cobol for Eclipse Windows
Hi, i try install Visual Cobol for Eclipse in two Win7 differents.All instalations see this error in execution Eclipse:Assinatura do problema: Nome do Evento de Problema: APPCRASH Nome da...
View ArticleRE: Visual Cobol for Eclipse Windows
Which Visual COBOL product version number are you installing?Please try downloading the product again. saving the download to disk and then running the installer from there as it appears that you may...
View ArticleRE: Visual Cobol Compile Error
Yes, I tried this on a different computer using Visual Studio 2012 Premium and was able to reproduce the problem so it appears to be related to specific environments instead of the Shell version.I am...
View ArticleRE: Validating cell datagridview
You can use the CellValidating event to do this.I found the following example in the Microsoft docs and converted to COBOL:method-id dataGridView1_CellValidating final private. procedure division using...
View ArticleValidating cell datagridview
Hi guysHow to lock a cell of datagridview to accept only numbers. Otherwise, to ignore the change.
View ArticleRE: Validating cell datagridview
Hi Chris,I had to make some adjustments because this code validates a blank line and I needed to validate the data change. Follows the working code.Thank you, I couldn’t have done it without youThank...
View ArticlePrinting
I am having trouble using the printer_redirection code. My printer will act like it wants to start printing, but nothing comes out. I am testing with the testprintraw cobol project. My printer acts...
View ArticleVisrel to generate report accessing native database.
Visrel is the best, I know, to generate report accessing native database. There is a Lite option that has almost all features of the paid version. Configurar / Utilizar a versão LITE.The Form...
View Articlesmtp mail with cURL (was in wrong forum)
Hello,I have been trying to send mail using cURL from Cobol. I took an example from this forum but I am stuck with the mail body:Here is the link to the example from cURL...
View ArticleRE: Printing
If you are writing the file to disk first then perhaps you could try using PC_PRINT_FILE instead of the printer redirection shown in the example which is really for writing your print line directly to...
View ArticleMethod description
The following code is part of the ExceptionDemo. There is a description for the New method but this is not shown in Object Browser after selecting the method. Only the class Name 'TimedException'...
View ArticleRE: Printing
Can that file be an external file that is created during the select assign to statement?
View ArticleRE: Printing
Take a look at PC_PRINT_FILE routine in the docs under Library routines.The first parameter that you pass in is a variable containing the filename to print.This could be the same variable that you use...
View Article