Forum Post: RE: Linker flag -U in cob32 or cob64
The 'Dynamically Load Unresolved Reference (-U)' means the entries ( programs ) which were not found at the link step will de dynamically called when the program will be executed. For reference: (...
View ArticleForum Post: RE: Crystal reports
Using EXEC ADO is a comfortable possibility to create a DataSet with Visual Cobol.
View ArticleForum Post: RE: Crystal reports
Sorry for English, translated by google. I use Crystal Reports a long time and not use database, what I do is to create a .csv file (delimited;) and create also a arquino schema.ini where I set all...
View ArticleForum Post: RE: Linker flag -U in cob32 or cob64
Thank you, Yvon You gave me a very good example and use case for linker -U flag. Have you ever encounter the following issue: My source code is as simple as yours: (COB64.cbl) .......
View ArticleForum Post: RE: Linker flag -U in cob32 or cob64
You should use the .cbl extension in the link. Not . o. When .cbl: cob64 -g -x -t -oCOB64 COB64.cbl -- You compile and link When .o: cob64 -g -x -t -oCOB64 COB64.o -- You only link ? Would you...
View ArticleForum Post: RE: Linker flag -U in cob32 or cob64
I rename COB64.cbl as HELLO.cbl cob64 -g -x -t -oHELLO HELLO.cbl ./HELLO --- works cob64 -g -x -t -oHELLO HELLO.o ./HELLO -- works cob64 -g -x -t -oHELLO HELLO.o -U linker flag -U makes all...
View ArticleForum Post: RE: Linker flag -U in cob32 or cob64
I don't reproduce the behaviour you describe... From the 1st picture in this notes, I would see the OS as being Linux. What MF product ( including update level ) is being used? I would think it's...
View ArticleForum Post: RE: Linker flag -U in cob32 or cob64
Thank you, Yvon Don't worry about it, I figure out how to turn off -U in Eclipse GUI checked "Error on undefined symbol" , it turns off -U flag. Thank you again.
View ArticleForum Post: Eclipse
I'm trying to download Visual Cobol for Eclipse Personal Edition but the only option that appears is for Visual Studio. What happened with Visual Studio for Eclipse? Microfocus has disabled this...
View ArticleForum Post: RE: Eclipse
Hi jsilickas, The website appears to be offering me the choice of Visual Studio or Eclipse support. This is the address I used and I clicked "Trial Download" at the top right....
View ArticleForum Post: File Status Code 05
This is not a big deal, but I have an Indexed File that is NOT described as OPTIONAL in the SELECT statement. When I OPEN the file I-O, and the file is not there, it creates an empty file (good!...
View ArticleForum Post: RE: File Status Code 05
Hi Austin1, this behavior depends on the setting of the OPTIONAL-FILE directive. By default this directive is set on, giving the behavior you've observed, i.e. an OPEN I-O or OPEN EXTEND on a file...
View ArticleForum Post: RE: Select a treeview
How you return the value selected depends on whether or not you are using binding but a real simple example is using the SelectedItemChanged event. method-id treeView1_SelectedItemChanged. procedure...
View ArticleForum Post: Multiple rows in a datagrid
Hello, I have a datagrid with multiple lines. Select three of these lines. How do I read the three lines I selected? Thanks Alberto Ferraz
View ArticleForum Post: RE: Select a treeview
Thanks again for your help. Best regards Alberto Ferraz
View ArticleForum Post: RE: Multiple rows in a datagrid
You can use the SelectedItems property of the dataGrid control as it will contain all of the selected rows. Something like: if dg1::SelectedItems::Count 0 perform varying myrow as type rowTemplate...
View ArticleForum Post: Relativity and Linked Servers
My Cobol server is running in Linux and I am using Relativity to populate some data to a website. I have a linked server setup using the 64bit driver. First off looking to see if anyone else has...
View ArticleForum Post: RE: Relativity and Linked Servers
There is a previous post about rounding errors in linked servers that I don't seem to be able to comment on anymore. community.microfocus.com/.../13179.aspx The suggested solution seems to be to cast...
View ArticleForum Post: Printing to PDF
Hi Up to now, In Net Express, and Visual Cobol indeed, we have been able to print directly to Adobe PDF by setting the default printer to Adobe PDF and using the PC_PRINTER... routines. We would...
View Article