RE: One more C# WPF to Cobol
I got it to work but I had to make a few changes.First comment out your own FindResource method in the source so that it will not be called.It is always returning null and I am not sure why it is being...
View ArticleRE: CBL_DIR_SCAN_READ
I do agree that a sample in the docs would be nice for all of these calls.I would just like to point out that the parameters to these library routines are clearly marked as either On Entry or On Exit...
View ArticleRE: CBL_DIR_SCAN_READ
I agree that the documentation for this area would be enhanced by a sample. I will see if this is something that we can provide in a future release.Thanks
View ArticleRE: Printer Browser
Hi Jerry. Apologies for the problems caused by the documentation for this routine not being as clear as it could be. We will look to provide some clearer descriptions for the parameters for these...
View ArticlePrinter Browser
I was looking at the examples in "PC_PRINTER_SET_DEFAULT". Example #2 uses the routine to brows for a printer. It then uses the routine to set the printer as the default. It then uses "PC_PRINT_FILE"...
View ArticleLinq do SQL database
Hi ;)It's possible to use Linq connection with Visual Cobol ?Like...
View ArticleRE: Linq do SQL database
Unfortunately, not in any usable way at the moment. The Linq to SQL feature relies on converting lambda expressions into expression trees (instead of delegate instances) which are then passed to the...
View ArticleRE: One more C# WPF to Cobol
E-mailing me directly with product problems is not the correct way to receive product support.Please post the problems directly to the Community Site forum so that everyone can see them or open up a...
View ArticleOne more C# WPF to Cobol
here is the c# Code:List<string> options = newList<string>() ((CollectionViewSource)this.FindResource("cvsOptions")).Source = optionsList<WPFGridZeilen> GridList =...
View ArticleRE: Incorrect SQL statement
Put the column name in quotes like "RESULT" in the query or use a table alias with it like: EXEC SQL SELECT A.result INTO...
View ArticleIncorrect SQL statement
I am getting a "COBES0100 : Incorrect SQL statement syntax near: RESULT" when I try building my project. RESULT is a column name in one of my tables. This code is coming over from Acucobol, where It...
View ArticleRE: JDBC Connection sharing between java and cobol
Btw. This example could be placed in the documentation for your product as well
View ArticleRE: JDBC Connection sharing between java and cobol
And you have to name your connection explicitly withexec sql bind connection myconnection to :myconnection end-execso that you can release it with :exec sql unbind connection myconnection...
View ArticleJDBC Connection sharing between java and cobol
Hello,I have the following java code :Connection connection = null;try { /* DB2 */ Class.forName("com.ibm.db2.jcc.DB2Driver"); connection = DriverManager.getConnection...
View ArticleRE: JDBC Connection sharing between java and cobol
Thanks for the suggestion. We're already working (with Chris) to improve the documentation that was mentioned earlier in this thread, and an example is something we'll be looking at.Thanks
View ArticleError with tracking logs when build
I frequently get this warning when I run or build a Visual COBOL native or managed project in Visual Studio 2012:"Forcing a rebuild of all sources due to an error with the tracking logs. Not a valid...
View Article