Forum Post: Strange characters on the field
I did the migration of customer data from cobol files (.dat) to MySql. The conversion went fine but now when I consult the data on the screen appear strange characters in special characters (accents,...
View ArticleForum Post: RE: Cobol Printing
If you are using PC_PRINT_FILE on Windows then you do not need to place the file in the C:\ root directory in order to print it. What is the name of the file that you were trying to write to? If the...
View ArticleForum Post: RE: Strange characters on the field
Try setting the compiler directive runtimeencoding(ansi) on in the COBOL tab of the project properties. This should tell it to treat PIC X data using the ANSI codeset. You could also try using...
View ArticleForum Post: RE: DataGrid.RowDetailsTemplate
Thanks for your answer bau my problem is not receive the data selected. I try to make an example of a gridview contain the invoices of a client. It's OK. Now i want to expand the gridview to see...
View ArticleForum Post: msing authorization code for Visual Cobol for Eclipse
Hello, I've downloaded Visual Cobol for Eclipse from your website but I didn't receive the authorization code... Kind regards,
View ArticleForum Post: RE: msing authorization code for Visual Cobol for Eclipse
You should be asked to activate the PE product during the installation process, if not: - Open the PE product - go to Help Micro Focus Product the License activation page would open up - Select the...
View ArticleForum Post: Array not populating correctly in datagrid
HI, I have a cobol program which returns me the array in a copybook when I pass that copy book to form and try to load that array in datagridview the value is getting changed. e.g The Copy Book...
View ArticleForum Post: RE: Cobol Program Driving the whole flow
I was able to figure out the solution. I added a timer control and used thread to open the form with timer, Thanks Chris for all your help
View ArticleForum Post: RE: Array not populating correctly in datagrid
The default format for a column is simply a text format so numeric data will not contain any formatting characters such as decimal points, commas etc. In order to get the columns to be formatted...
View ArticleForum Post: RE: Array not populating correctly in datagrid
Thanks the formatting issue is resolved but now if the value is 200.00 it is displaying as 20011.00 and if it is 16.25 then it is displaying as 1625.00
View ArticleForum Post: RE: DataGrid.RowDetailsTemplate
I have attached a real simple example of using a dataGrid with a rowsDetailTemplate that works for me.
View ArticleForum Post: RE: Array not populating correctly in datagrid
I am afraid that I will need to see an example in order to resolve this as I do not experience the same behavior here with a simple demo. Can you attach a simple demo that demonstrates the problem?
View ArticleForum Post: RE: How to call COBOL from C# interface
You must have access to the Visual COBOL software in order to create this properly as the COBOL programs must be compiled as managed code using the ilsmartlinkage directive. How are the COBOL programs...
View ArticleForum Post: RE: Visual Cobol 2012 PE
You should be able to register for the download again on www.microfocus.com/.../index.aspx You should then receive a new download link for whichever version you select.
View ArticleBlog Post: What's Your Language?
Introduction Human nature has a strange way of not letting a person recognize valuable information or ideas, even when they are right in front them. Advertisers and sales people are always trying to...
View ArticleForum Post: RE: Visual Cobol 2012 PE
I have already done that. That is ONLY for visual studio 2015. So I downloaded Visual Studio 2015 and VCPE for it, but it has licensing issues and support just told me to go to the community and find...
View ArticleForum Post: RE: DataGrid.RowDetailsTemplate
Thanks for the example. It is the simplest to load the data in the datagrid that I saw. I get the programming scheme. Now what I was trying to do that but with multiple detail lines for each customer....
View ArticleForum Post: RE: DataGrid.RowDetailsTemplate
The multiple row approach appears to be done by embedding a second grid within the RowsDetailTemplate. I will work on modifying the example I gave to you to support this.
View Article