Forum Post: RE: Courseware
I am disappointed to hear that. I am inferring from your reply that the Courseware is integrated into Visual Studio. If this is the case, will there be a comparable set of Courseware for the Eclipse...
View ArticleForum Post: RE: Courseware
The Eclipse training is ready, just not published yet. coming soon.
View ArticleForum Post: RE: CS 2.3 error "Unable to load DLL 'xxxxxx'"
Thank you, the DLL is now being found. Since this is all "exploratory" we took the cheap route and used: [DllImport(@"D:\inetpub\wwwroot\neasos\NEAS\WYP46P.dll", EntryPoint = "WYP46P", SetLastError =...
View ArticleForum Post: RE: CS 2.3 error "Unable to load DLL 'xxxxxx'"
This most likely is a mismatch of targets between the C# ASP.NET program and the COBOL .DLL. What is the target of the ASP.NET app? If it is x64 or anyCPU and run on a 64-bit computer then the COBOL...
View ArticleForum Post: RE: CS 2.3 error "Unable to load DLL 'xxxxxx'"
We have: 1. Solution Configuration and Platform in the VS Tool bar are Release/x64. 2.ASPX Properties Build tab Platform target: x64. 3. COBOL Link Library's Properties: COBOL tab Platform target:...
View ArticleWiki Page: Incorrect SQL statement syntax near: WITH
Problem: The following complex query compiles fine in Net Express: EXEC SQL DECLARE cursor0 CURSOR FOR SELECT col1, col2, CASE WHEN ... THEN (SELECT COUNT(*) FROM table1...
View ArticleForum Post: RE: CS 2.3 error "Unable to load DLL 'xxxxxx'"
It sounds like everything is now 64-bit in your application and it should find the correct run-time because you are linking dynamically. Does your COBOL application make calls to any other .DLLs that...
View ArticleForum Post: RE: CS 2.3 error "Unable to load DLL 'xxxxxx'"
The COBOL program (DLL) doesn't make any calls to anything else. No SQL, just native/standard COBOL IO statements. I found the Process Monitor download on TechNet and passed the info to my co-worker....
View ArticleForum Post: RE: Upgrade VC 2.3 VS2013 to VS2015
Kind of a follow-on question: Once we've upgraded our developer PCs to VCVS2015 do we have to rebuild and deploy entire solutions or can we make changes and deploy individual projects (EXE or DLL) as...
View ArticleForum Post: RE: Upgrade VC 2.3 VS2013 to VS2015
Prior to V2.3 this would not have worked because each different version of Visual Studio being used had its own prerequisites of specific version of the C++ runtime. This meant that if you compiled...
View ArticleForum Post: VStudio 2015 Vcobol 2.2 IDE Settings
Visual Cobol 2.3 for Visual Studio 2015 To set environment variables at runtime we have to use Properties/Application/Environment/IDE settings How to use environment variable in IDE settings ? I've...
View ArticleForum Post: RE: VStudio 2015 Vcobol 2.2 IDE Settings
There does appear to be a problem with environment variable expansion when set within the Properties-- Application-- Environment section. I will create a bug report for that. If you would like to open...
View ArticleForum Post: Visual COBOL for Visual Studio - WPF - DocumentViewer for...
Oi, Este é um exemplo de como você pode usar o objeto DocumentViewer para visualizar e depois imprimir arquivos doc e docx. Abraços, Coral Hi This is a demo to show how you can work with...
View ArticleWiki Page: Calling Managed COBOL from un-managed code
The Microsoft .NET Framework and ‘managed’ code usage seem to be everywhere. More and more companies are adopting the use of managed frameworks to provide greater flexibility in their development...
View ArticleWiki Page: Cancel install of VCVS or VCE before finish leaves product not...
Problem: Installing the product ED or VC 2.3 Update 1 on a clean machine and hitting the Cancel button towards the end (just before the completion of the installer), might leave traces of the product...
View ArticleForum Post: File Handler behavior in managed code
In native COBOL if you have "SELECT DATA-FILE ASSIGN TO DISK 'OLD\Data.dat'" and "OPEN INPUT DATA-FILE" then the File Handler will look for an environment variable named "dd_OLD" and replace the "OLD"...
View ArticleForum Post: RE: File Handler behavior in managed code
The file handler mapping procedure to environment variables should be identical between native and managed code applications. I just tested here using VC 2.3 and it works in a managed code project by...
View ArticleForum Post: RE: File Handler behavior in managed code
We're using VC 2.3. We are still fooling around with using ASPX to call COBOL DLLs. We've ditched the idea of using native COBOL DLLs because we never could get around that "wrong format" error and...
View ArticleForum Post: Export to excel
I have an asp table. Need to export the data from the table to excel. Are there any sample programs for this? Thanks in advance.
View ArticleForum Post: RE: File Handler behavior in managed code
Actually for a C# ASP.NET application I don't believe that you can automatically set environment variables in web.config as the values you set are simply string pairs that can be read by your...
View Article