Forum Post: RE: Visual Cobol Server
If you are developing using Visual COBOL for Eclipse then you need to use COBOL Server for VS2010 and not COBOL Server for VS2012 as you specified previously. The COBOL Server for VS2012 should only...
View ArticleForum Post: File Share With Visual Cobol
Dear Sir, We are using File Share with Visual Cobol 2.2.1 for Eclipse and we get Always the same error 9/124 don´t matter that we put on the Server and Client definition. Our Server is en AIX 7.1 and...
View ArticleForum Post: RE: File Share With Visual Cobol
A RTS 124 is a communications error which means that your underlying CCI is most likely not setup correctly. How are you setting up CCITCP? Can you show me what you have for your client and server...
View ArticleForum Post: RE: File Share With Visual Cobol
Dear Chris, Our AIX Server CFG file is : -s 192.168.1.2 -cm ccitcp -d pass.dat (Login and Password) Our Windows cfg file is : /s 192.168.1.2 /cm ccitcp /b /f c:\pass.dat Many Thanks in...
View ArticleForum Post: Excel Interop
set ExcelApp to new Application () set ExcelWorkBook to ExcelApp :: Workbooks :: Add (1) set ExcelWorkSheet to ExcelWorkBook :: Sheets [1] as type Worksheet set ExcelWorkSheet :: Cells [1,1] to "test"...
View ArticleForum Post: RE: Excel Interop
Can you show me how the data items are defined as well? Thanks
View ArticleForum Post: problems with installing visual cobol
i tried installing visual cobol on my windows 8.1 and i get the errror message 0x80070642 user cancelled installation can anyone help. i am installing it as an add on to visual studion 2013.
View ArticleForum Post: Checing for type in Visual COBOL
I'm converting this C# statement to COBOL: if (view.FocusedColumn.FieldName == "CityCode" && view.ActiveEditor is DevExpress.XtraEditors.LookUpEdit) For the COBOL statement, I'm using: if...
View ArticleForum Post: RE: Checing for type in Visual COBOL
Hi Phil, you should be able to do: if view::FocusedColumn::FieldName = "CityCode" and view::ActiveFilter instance of type Devexpress.XtraEditors.LookupEdit Robert.
View ArticleForum Post: RE: problems with installing visual cobol
What version of Visual Studio 2013 do you have installed, e.g. Professional, Premium, shell? What version of Visual COBOL is this? Can you please tell me the name of the installer file that you are...
View ArticleForum Post: RE: Excel Interop
It might be useful to see the equivalent C# as well. One thing that occurs to me is that subscripting using square brackets is zero-based in COBOL, just as in C#. Is it possible that you meant to...
View ArticleForum Post: RE: problems with installing visual cobol
Please post your answers directly to this thread and do not message or e-mail me directly with your responses. Received this: the version of visual studio is visual studio ultimate 2013. and the...
View ArticleForum Post: RE: File Share With Visual Cobol
Dear Chris, Solved. The problem was the Server Configuration File : /pf c:\pass.dat
View ArticleForum Post: Encrypt And Un-Encrypt a Print file - Update
Hi All, Just checking if any one from MF has read my previous post concerning this matter? If so : is it possible / not possible? Would really appreciate an answer. Thanks Neil.
View ArticleForum Post: RE: Excel Interop
01 ExcelApp type Application. 01 ExcelWorkBook type Workbook. 01 ExcelWorkSheet type Worksheet. Sorry, it would have made sense to add them. Thanks
View ArticleForum Post: RE: Excel Interop
Application ExcelApp = new Application(); Workbook ExcelWorkBook = ExcelApp.Workbooks.Add(1); Worksheet ExcelWorkSheet = (Worksheet)ExcelWorkBook.Sheets[1];...
View ArticleForum Post: RE: Encrypt And Un-Encrypt a Print file - Update
What previous post? It would have been more useful to reply to that post, so we could see what it was.
View ArticleForum Post: RE: Encrypt And Un-Encrypt a Print file
I'm not immediately seeing the problem. I'll have to take a closer look. Unless you're using a very old version of COBOL for .NET, you don't need quotes around type and method names. That would make...
View ArticleForum Post: RE: Encrypt And Un-Encrypt a Print file
One problem that I noticed while rewriting this is that you don't validate the length of the key and IV, both of which must be ls-DES::BlockSize. I've fixed this (trivially) in my version. Using the...
View Article