RE: PL-SQL TYPE HEADER
Dear Chris,How I didn´t find a solution for this problema I want to test another approuch. I want to build a JVM Cobol program that read the HEADER Object and then Call a Cobol program with SQL...
View ArticleRE: How to pass parameters from native to managed
Hello Phil,It looks like you skipped an important step, which is to set the managed project to be registered as a COM server.Please follow the steps below:Make sure you open Visual COBOL as...
View ArticleHow to pass parameters from native to managed
This is from your tutorial on calling a managed class from native code:If is use COM onterop to call a managed class, I get error "(80070057): The parameter is incorrect" if the managed class does not...
View ArticleTextbox value Highlighted on Tab
Is there a way to turn off the selection of the value in a textbox field when you tab to the field?
View ArticleRE: Update 2.2.2
This is not something that I have run across. Please continue to work this through the open support incident.One question though; does this effect occur even after you rebuild the entire solution...
View ArticleRE: PL-SQL TYPE HEADER
Hi Pedro,Have you talked to Oracle about the correct way to handle this in Pro*COBOL? Pro*COBOL is an Oracle product and not a Micro Focus one.If you have to execute some PL/SQL that is not supported...
View ArticleRE: PL-SQL TYPE HEADER
Dear Chris,WE did that. But how PRO*Cobol don´t accept Type Object we get always the same error on Type Header. For that we are trying to do an JVM Cobol program to read the Object Header and then Call...
View ArticleRE: PL-SQL TYPE HEADER
You can call a native COBOL program from a JVM COBOL program. Look in the Samples Browser under COBOL for JVM and then select the JVM COBOL to Native COBOL example.
View ArticleRE: Update 2.2.2
As i mentioned in my original post rebuild ends without error and the webservice works as expected. Today we made a test running Visual Studio with Administrator Rights. In this case loading the source...
View ArticleRE: How to pass parameters from native to managed
The project was already registered for COM interop. Please see my original question. I'm looking for documentation which spells out exactly what data types can be passed as parameters from native...
View ArticleRE: How to pass parameters from native to managed
When you are calling a managed code application from native code you are using the COM library support which has been retained from the Net Express product. This documentation is supplied in Visual...
View ArticleRE: Runtime Error
Hi Kevin,The system files that are linked in when checking that option include Adis, Adisinit, Adiskey, Adisdyna, and Mffh but the run-time itself is never included in the linked executable in Visual...
View ArticleRuntime Error
I have a naïve code program that I put as a single project in a solution that is a single executable. On the cobol link tab I have checked the add system files. When the client runs the .exe from the...
View ArticleRE: Textbox value Highlighted on Tab
You can set the SelectionStart property of the textbox to 0 in the form load event or after setting the Text property. method-id Form1_Load final private. procedure division using by value sender as...
View ArticleRE: Textbox value Highlighted on Tab
That did not seem to do anything. I put it into the code when I init the form and it still selects the full field when you tab to the textbox.
View ArticleRE: Textbox value Highlighted on Tab
Here the other thing I found. If you hit the end or home key and remove the selection of text, if you tab back to the field the text is not selected the next time. Only on the initial tab to the field.
View ArticleRE: Textbox value Highlighted on Tab
This is standard behavior of the textbox field. The text selection occurs when you tab into the field the first time but not if you click into the field, etc.Try the following code: set...
View Article