RE: How to Print to USB Printer under Win 7 using VS 2015
Hi Allen,Yes you can handle everything through PC_PRINTER calls if that is what you are referring to but you should still be able to redirect the printer the way that you were trying to do.I think that...
View ArticleRE: CS 2.3 error "Unable to load DLL 'xxxxxx'"
Hi Don,When calling a native .dll from an ASP.NET application running under IIS you normally need to set the location of the .dll within your PATH in order for the .dll to be picked up correctly even...
View ArticleCS 2.3 error "Unable to load DLL 'xxxxxx'"
CS 2.3 w/ Hotfix #1 installed on Windows Server 2008 R2. VC 2.3 for VS 2013 w/ Hotfix #1 installed on Windows 7 PC.We are trying to call a native COBOL DLL from an ASPX/C# program...
View ArticleRE: Courseware
Are you downloading the Visual Studio or Eclipse version of the Visual COBOL product? The courseware is currently only available for the Visual Studio version.
View ArticleRE: How to Print to USB Printer under Win 7 using VS 2015
Chris....Thanks for your answer.... I chose “managed” as it was what Fano and I used in trying to get my initial VS 2015 issues resolved... The coding I have done thus far was exploratory in nature and...
View ArticleRE: How to Print to USB Printer under Win 7 using VS 2015
Since you mention that you are using "form1.cbl" this would indicate that you ARE using .NET managed code to create a Windows Forms GUI application. This is not available in a native project so a...
View ArticleHow to Print to USB Printer under Win 7 using VS 2015
I am unable to print direct to usb printer under windows 7 using MF VS 2015. I spent considerable time researching how to do this. I am very familiar with Liant's RM Cobol printing facilities. I tried...
View ArticleRE: 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 ArticleRE: 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 ArticleRE: 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 ArticleRE: 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: x64,...
View ArticleRE: 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 ArticleRE: 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 ArticleRE: 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 ArticleRE: 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 ArticleRE: 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...
View ArticleVStudio 2015 Vcobol 2.2 IDE Settings
Visual Cobol 2.3 for Visual Studio 2015To set environment variables at runtime we have to use Properties/Application/Environment/IDE settingsHow to use environment variable in IDE settings ?I've...
View ArticleVisual COBOL for Visual Studio - WPF - DocumentViewer for Doc/Docx Files
Oi,Este é um exemplo de como você pode usar o objeto DocumentViewer para visualizar e depois imprimir arquivos doc e docx.Abraços,CoralHiThis is a demo to show how you can work with DocumentViewer...
View ArticleRE: 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 Article