RE: Problem with PFKeys
Chris,I did ALL that you Write in your email about ADISCTRL and put it in the folder were are the OBJ, IDY, ETC.and not run...Is This the Folder that you say "Copy the ADISCTRL file that you just...
View ArticleRE: Problem with PFKeys
The ADISCTRL file needs to be in the working directory for the application.By default the working directory is the output folder of the project which is the folder containing the .EXE, .OBJ and .IDY...
View ArticleProblem with PFKeys
Dear sirs,I having problem with an screen that we have PF Keys. Enclosed the screen in question.Please say me what I have to do in Visual Cobol for Eclipse for configure ADISCF.TKS
View ArticleRE: OPENESQL Question
Sorry for the delay.I just received the following from development:SQL(CHECK) is not supported with TARGETDB=ORACEOCI. To use SQL(CHECK), you need to use the DBMAN=ODBC directive.ORACLEOCI is being...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
The Text property of a Textbox control is a string which cannot be directly moved into the amount field which is a numeric.The following should work but it assumes that the value entered is a valid...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
Use TRY CATCH format:: TRY set amount to type System.Convert::ToDecimal(self::TextBox17::Text) CATCH display "Value is not numeric"...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
Not it doesn't work.Unhandled Exception:FormatExceptionInput string was not in a correct formatat Void System.Number.StringToNumber(System.String str, etc.In Cobol-wow to display a field numeric or not...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
Can you show me the exact statement that you are using on which you get this error?Also what is the value that you are entering in the field prior to the set statement?I am using the statement that I...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
There are no errors if you use the tryparse for the conversion:If you expect a double: set Amount to 0.0 *> optional invoke type System.Decimal::TryParse(TextBox17::Text, by reference...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
Hi Wascar,Thank you for your email. I apologize that we are not in a position to help you in the way you request. We spent about a year working out the details of how to effectively convert Wow...
View ArticleError 1 COBCH1624 : Cannot implicitly convert string to binary-long unsigned.
Hello.I'm starting towork withVisualCobolbut I'man oldprogrammerRM /COBOLandCOBOL-WOW. IfvisualCobol really Cobol, I know how tohandlethis new Cobolnumericfieldsandtheir...
View ArticleRE: Error 1 COBCH1624 : Cannot implicitly convert string to binary-long...
Thank you all for trying to help. The reality is that visual cobol not yet ready to overcome the cobol as language, is painful but this effort needs to microfocus is sailing in the dark. Thanks for...
View ArticleRE: Debugging and Rebuild
Hi In your VS project Go to BUILD >> Configuration manger >> then in the Pop up in 4th Column >> unckeck the Build Option.Save the project and your done.Let me know if this works for you
View ArticleDebugging and Rebuild
Is there a way not not build a complete project everytime you debug? When I starting the debug of my solution, it rebuild every project whether they have changed since the last build or not. Is this...
View ArticleRE: Debugging and Rebuild
You can also turn on the Visual Studio setting under Tools-->Options-->Projects-->Build and Run-->Only build startup projects and dependencies on run.Only build startup projects and...
View ArticleRE: Visual Cobol block copy/paste ?
Hi KarlRainerI use bellow options using Keyborad >>> Shift+Alt+Arrow to select the code and then normal copy pasteUsing Mouse >>> Mouse+Alt to select the code and then...
View ArticleVisual Cobol block copy/paste ?
As an old NE user, block copying was an essential to ease daily work. Does this exist in Visual Studio/Cobol?
View ArticleCalling Java from VC 2.1
Hello,We are quite new to Visual Cobol 2.1 for Eclipse under Linux.We have an application in "classical cobol" and would like to be able to call the java library iText to generate pdf (or rtf) files....
View ArticleRE: COBSQL Question
With Cobsql you can pass directives to Oracle Pro*Cobol pre-compiler. This is done by including the Pro*Cobol directive(s) after the end-cobsql (or end-c) directive. So for example:p(Cobsql) verbose...
View Article