RE: Unhandled Exception
This does look like a runtime mismatch. The method CompareStringFig is a fairly recent addition to the runtime, so it looks as though the program has been compiled with a more recent version of the...
View ArticleUnhandled Exception
I have a client that is get an unhandled exception 'Method in found Int32 MicroFocus.COBOL.Program.Helper.CompareStrigFig (system.string System.string)' . I can not get the same error on my...
View ArticleRE: Can't add existing form to project
Hi ChrisI'm using Micro Focus Visual COBOL 2.2 Version 2.2.00244 but without update 1, and as I'm using a trial version (with a Personal license) that is probably the reason. Sorry for taking up your...
View ArticleRE: listBox (sample C#)
Hi Claudio,Please see the documentation for the Listbox class here as it lists all of the methods, properties and events that are available to you.If this is a single selection Listbox then the...
View ArticleRE: listBox (sample C#)
you provided the link to the microsoft C # documentation.there is the link to the documentation of methods for use in visual cobol?
View ArticleRE: listBox (sample C#)
Sorry, the .NET Framework classes are a Microsoft product and therefore they are documented by Microsoft. When you use COBOL you are still accessing the same underlying .NET Framework classes and the...
View ArticleRE: listBox (sample C#)
How i try to use dataGridView. But i dont know to create column-names.I try: (all whith errors) set dataGridView1::ColumnCount to 5 (OK) invoke dataGridView1::Columns::Add::"PriCol"...
View ArticleRE: listBox (sample C#)
The Add method on the Columns collection property does not take a string as a parameter, it takes an object of type DataGridViewColumn.You need to create the column objects first and then add them to...
View ArticleRE: Semantics
Do you mean in the DevHub product instead of "in Visual COBOL for Eclipse?"On what OS?What is the error that you receive?Thanks.
View ArticleSemantics
Dear Sirs,We are having problem to execute the following in the command Line of Visual Cobol for Eclipse :cob -C"P (cobsql) end-c SQLCheck == SEMANTICS endp"Many Thanks, PJM
View ArticleRE: Semantics
The error screenshot does not correspond to the command that you showed in your initial post. Your initial post shows cob which is the command under Unix/Linux which is why I assumed that you were...
View ArticleRE: Using 'Call' in Method
Hi Chris,I am a little confused with this. We have one Winform project for a Menu that should call different Winform projects for every Menu option, and I can not make the call work, I allways receive...
View ArticleUsing 'Call' in Method
I am trying to execute a non-windows form cobol program from a windows form cobol program with a method. My syntax is 'Call "FPACTGN" using PMCALL" . I have the called program referenced within the...
View ArticleRE: Using 'Call' in Method
Hi Juan,You can call programs within other projects by adding a reference to those other projects within the calling project.A single Winform application should only have one main project that is...
View ArticleRE: Using 'Call' in Method
Thanks Chris,In a traditional Cobol app (character or gui based) you normally have a main menu with all the options available, ie Customers, Proposals, Sales, Statistics, ..... and all the...
View ArticleRE: Using 'Call' in Method
The strategy would be the same if you wish to keep it that way.Your main application can present the main menu and then you can have separate Class Library projects for Customers, Proposals, Sales,...
View ArticleRE: Using 'Call' in Method
Great Chris,I am not able to call or invoke the other class projects from the main exe. I will wait for the sample.Thank you!
View ArticleRE: Using 'Call' in Method
Here is a real simple demo of one way to possibly do this.This is a solution that contains a main Winform application project named mainapp.It also has two class library projects named customer and...
View Article