Forum Post: RE: "BY VALUE LENGTH OF directory-name SIZE 4" construct
Hi Austin, Certain dialects of COBOL (including the Micro Focus dialect) support the use of a special register named "LENGTH OF". This is used in the form: LENGTH OF MY-VARIABLE-NAME and returns the...
View ArticleForum Post: How to do Popup list from Master-Slave tables
Hi, I'm looking for an example that shows the best way to do a popup list that allows the user to choose a detail(slave) record that they can then edit. I'm writing small program that allows a user...
View ArticleForum Post: CBLLINK utility
Hi, Is there any way to create a managed dll in Visual studio using the CBLLINK utility.? Earlier in our Net Express project we used to create dll using the command: cblLink -d -s -oxyz.dll @xyz.lnk ....
View ArticleForum Post: RE: CBLLINK utility
cbllink is used to generate native .exe/dlls by invoking the LINK utility. managed code assemblies are not linked but are instead generated directly by the compiler/code generator. You can create...
View ArticleForum Post: RE: How to do Popup list from Master-Slave tables
Hi Peter, What technology are you using for your UI, WinForms, WPF, ASP.NET, other?
View ArticleForum Post: RE: How to do Popup list from Master-Slave tables
Green screen . 132w x 60h.
View ArticleForum Post: RE: Odd control focus behavior
This has since been resolved as per incident # 2827941. The resolution was to add the following statement in the Form Load event of the called ManWin1 program: invoke button1::Select() Woops! the...
View ArticleForum Post: RE: Odd control focus behavior
Correction: the above statement is incorrect. It should be as follows: invoke self::Activate()
View ArticleForum Post: Compare with another datagrid datagrid
hello , I wonder if it is possible comparisons between datagridview thanks
View ArticleForum Post: RE: Compare with another datagrid datagrid
I am not sure what you are asking for. In the post that was e-mailed to me there was some example code in vb but it does not appear in this post. Did you want the vb code converted to COBOL or were...
View ArticleForum Post: RE: Compare with another datagrid datagrid
sorry , I sent the wrong code, but need to make a comparison between two datagridview and bring the differences between the two
View ArticleForum Post: Data File Editor
Back in my NetExpress days I could look at the contents of an ISAM file using the Data File Editor. Research indicates that that tool is also available in Visual Cobol, however I cannot seem to...
View ArticleForum Post: RE: Data File Editor
Hello, You may find the Visual COBOL Data Tools at supportline.microfocus.com/.../VisualCobolAddpacks.aspx The name of the file is visualcobolr3dtx86.msi , and although the version says 2010 R3 , this...
View ArticleForum Post: RE: Data File Editor
That doesn't seem to work. When I go to that page and click the link for that file, it just takes me back to supportline main page that says Welcome To SupportLine. No file gets downloaded. Is there...
View ArticleForum Post: RE: Data File Editor
The link takes to a page where the tool can be downloaded. You need to log on the MF SupportLine to access the page.
View ArticleForum Post: RE: Compare with another datagrid datagrid
What are you actually comparing between the two grids, a 1 to 1 comparison by cell, so comparing grid1 row 1 col 1 with grid2 row 1 col 1, grid1 row 1 col2 with grid2 row 1 col2, etc.? Are you using...
View ArticleForum Post: RE: Consuming a WCF Service Created in .NET 4.5 in Visual COBOL.
It doesn't sound as if the WSDL generated by (2) above created a valid client. As I stated earlier, the native client generation does not work with all WSDL files especially those from WCF services....
View ArticleWiki Page: Run a .NET COBOL application from a network server
Problem: I want to run .NET COBOL applications on my workstation without COBOL Server installed locally. How do I configure this to run a .NET COBOL application from a network COBOL Server...
View Article