Wiki Page: How to set the first program to run or debug in a Visual COBOL...
Problem What needs to be done to set the first program to run or debug, in a Visual COBOL project containing multiple source files that compile to single executable target? Resolution: Open the...
View ArticleForum Post: License Error 26
I have recently been getting this message when I try to run Visual Cobol PE. "Unable to obtain the requested License: Error [26]: Request denied due to clock tamper detection." I had changed my clock...
View ArticleForum Post: RE: License Error 26
You will need to Contact your Micro Focus SupportLine representative in order to resolve the matter. You will be asked to provide the locking code of the machine and in return will receive a clean...
View ArticleWiki Page: Cannot install Visual COBOL 2.2 Update 2 - Error 0x81f40001 -...
Problem Cannot install Visual COBOL 2.2 Update 2 - Error 0x81f40001 - Setup has detected one or more Hotfixes are installed. Resolution: You are upgrading Visual COBOL and have hotfixes installed...
View ArticleWiki Page: Understanding information shown in the Visual COBOL for Eclipse...
Problem The Eclipse .Log file records any activity from the IDE, including exceptions and errors. This information is often very detailed and useful for troubleshooting issues, but it is not easy to...
View ArticleWiki Page: Errors with COMP host variables after compiling on Windows and...
Problem When SQL programs contain host variables that are declared as COMP, compiling with OpenESQL on Windows and moving the INT code to a non-Intel platform gives incorrect values in the COMP...
View ArticleForum Post: Cancelling a native DLL called from managed code
Hi, My program, Visual Cobol managed code, calls an unmanaged DLL containing print routines using PrintEasy by Easirun. The call functions with no Problem, but, the Statement: cancel "LSdruck" doesn't...
View ArticleForum Post: RE: Cancelling a native DLL called from managed code
Sorry but the .Net framework/CLR does have a mechanism for unloading native DLLs, so the .net runtime has no way of removing it on a CANCEL time or at Stop Run time.
View ArticleForum Post: RE: Cancelling a native DLL called from managed code
Although you cannot cancel the program you should be able to specify IS INITIAL in the program-id of the unmanaged program and each time it is called it will be in its initial state if that is what...
View ArticleForum Post: Save image to sql.
Hello, lately I have been triying to create a code to upload an image into my sql database from visual cobol 2012. I have done this in C# with byte[] image object o =...
View ArticleForum Post: RE: Save image to sql.
The following code should work: declare image as type Byte occurs any declare o as object = type Clipboard::GetDataObject()::GetData("Bitmap"); if o not = null set pictureBox1::SizeMode to type...
View ArticleForum Post: RE: Save image to sql.
im getting Cannot implicitly convert type System.Windows.Controls.Image to type System.Drawing.Image.
View ArticleForum Post: RE: Save image to sql.
Doesn't have to be the same way, what would be the best way to achieve saving an image to a sql database?.
View ArticleForum Post: RE: License Error 26
Hello TCHall. I will contact you under separate email to resolve.
View ArticleForum Post: RE: Save image to sql.
For the previous error you can try changing this line to: set pictureBox1::Image to o as type System.Drawing.Image What database are you using? Open up the Samples Browser under the Visual COBOL...
View ArticleForum Post: RE: Save image to sql.
Tried it and gives an error. But the sample should help me a lot ! Ill study the sample. thanks
View ArticleForum Post: RE: License error 26
Hello TCHall. I will contact you under separate email to resolve.
View ArticleForum Post: RE: Save image to sql.
I have used the attached method with succes a while ago (1 Gb of pictures) The ReadAllBytes does the read (very fast !!) Succes, Jan Vink...
View Article