Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
[Migrated content. Thread originally posted on 05 July 2011]I am trying to use a active-x control I purchased from CodeJock. The following example is in VB, Can anyone help me convert this to acucobol? Dim Series As ChartSeries Set Series = ChartControl.Content.Series.Add("Quoted") Series.Points.Add "Sam", 11 Series.Points.Add "Jesse", 12 Series.Points.Add "Dave", 4.5 Series.Points.Add "Max", 6 Series.Points.Add "Brian", 5 So far I have:Modify ChartControl Content::Series::Add ("Quoted")Which the compiler seems to like, but I can't come up with the syntax to add the points, I guess I don't understand what the VB Dim and Set verbs are doing, Series.Points.Add "Max", 12 Series.Points.Add "Brian", 11 Set Series = ChartControl.Content.Series.Add("Unbillable") Series.Points.Add "Sam", 7 Series.Points.Add "Jesse", 2 S
[Migrated content. Thread originally posted on 29 June 2011]Hello We are running an app on an XP machine that calls win$printer. It works fine.When we try to run it on a Windows7 machine, it runs but the "Printer..." button is missing.Is there a new version of win$printer for Windows7 or are there any settings to make the current one workon Windows7?Thanks
[Migrated content. Thread originally posted on 04 July 2011]Hi there,I am running in a client/server environment.I have an activex control on the server, does anyone know how I create an incstance on the server when running the wrun32.exe on the client. There is no screen display at all.I know how to create activex objects on the client just by displaying it on a form etc but am struggling with the server. I have looked at the SERVER-NAME when displaying the activex but get a compile error.I tried using the CREATE statemnt but did not know what the object name should be and kept getting errors.So if I have an activeX control that performs functions and want to run it on the server not the client does anyone know hhow to do it ?
[Migrated content. Thread originally posted on 01 July 2011]Hi there,We have a floating window which is always resident so we do not have to load/unload controls everytime the window is needed. We just make it visible when called etc.When we need to display the window when other floating windows are already displayed it appears behind the current floating window.How do we bring it to the front when it is called and resdisplayed ?Thank-you.
[Migrated content. Thread originally posted on 23 June 2011]I am experiencing a problem calling a DLL from Acucobol.The programs work fine on the development system (running Windows 7 64 bit), but when I move them to the server (windows 2008 R2 64 bit) I get the following error: Invalid Class String(Exception from HRESULT: 0x800401F3 )CO_E_CLASSSTRING)Any help would be appreciated.Thank you
[Migrated content. Thread originally posted on 08 March 2011]I use EXCEL in my acuCOBOL code.But when I tried to debug my code, I could not continue after lineCREATE @Application OF @Excel HANDLE IN EX-APP.and I got ERROR-INFO-CODE = 8224.I guess I need to add something in my "cblconfig" file for debugging, but what are they?Thanks in advance.
[Migrated content. Thread originally posted on 27 June 2011]I am trying to execute cesadmintool on Visual COBOL to perform online authorization and the process doesn't connect to the authorization server. I think the problem is that the Linux system is behind a proxy.How do I specify the proxy details to the tool?
[Migrated content. Thread originally posted on 17 June 2011]Hello,I am getting run time error '165 Version number incompatibility' in a dll file of cobol code when a call statement is executed during animation. The calling code is a windows executable (formed by linking cobol and c objects)I am developing a netexpress project that uses couple of c objects that are generated using visual studio express 2010.many of the default windows libraries such as kernel32.lib user32.lib etc come installed with Nx5.1 and visual studio as well. Also both have a version of the linker (LINK.exe). Its very obvious that the linker versions are different (10 with VS and 6 with Nx51). There are 2 versions of the link.exe in the Nx5.1 installation one at /bin and the other at /bin/linker why is that ?Will the cobol run time system be ok with code produced by visual studio using its set of files and some code from Nx5.1 library files. Which version of the linker should Nx5.1 invoke.Could you please
[Migrated content. Thread originally posted on 22 April 2011]I am trying to write a COBOL program (previously used C$SOCKET) that uses secure sockets (SSL). I'm having a hard time finding resources to help me do this. Has anyone done this? I'm looking for something that is not platform specific (so it can be used on UNIX/Linux and Windows).Thanks,Rob
[Migrated content. Thread originally posted on 07 June 2011]Is there a method of receiving a UDP datagram within Extend. C$SOCKET appears to only accept TCP and not UDP.
[Migrated content. Thread originally posted on 16 June 2011]Hi All,Wondering if you can help me, experiencing this problem, where you open the main window and then open a floating window. When you move the Main window the floating windows stays in it original spot, it does not move with the main window. Would like to see the floating window move with the main window. If you minimize the main window the floating window is also minimized.Has anyone run into this problem? Working with ACUCOBOLGT 9.I was told that maybe we can call an window API to find the position of the main window and another API to move the floating window to its proper spot.Thanks in advance!!
[Migrated content. Thread originally posted on 07 June 2011]Hi,I am using the cbl_debugbreak call in the code.I have created an executable which I am testing , how ever the code does not seem to stop at the call , what could be missing ? the idy file is in the same directory as well.This used to work effortlessly in Netexpress 3.1 how ever in 5.1 it seems to ignore it.I am developing a transaction monitor service application executable using fujitsu UTM .Thanks for your help.PTeng
[Migrated content. Thread originally posted on 17 June 2011]Hi,I've successfully called Java from Cobol in a OO Cobol batch program, via direct java object instanciations and methods calls.I'm trying to use the same code (Java object using) in CICS mode. Using Cobol objects works well.I've not tried to use Java calls yet, but before to proceed to server confguration changes (PATH, JAVA_HOME, etc), I would like to know if this can work.Have you any idea about this question of direct calling of Java in OO CObol in CICS mode?Regards,
[Migrated content. Thread originally posted on 13 June 2011] I have tested the ICallBack program from the seminar on Visual Cobol 2010 eclipse as a jvm projecthere is the code: INTERFACE-ID ICallBack. METHOD-ID SendMessage. procedure division using by value msg as string. end method. END INTERFACE. CLASS-ID BizLogic. METHOD-ID CountMoney. local-storage section. 01 i BINARY-LONG. 01 formatter pic $$$$9. procedure division using by value max as BINARY-LONG callBack as type ICallBack. perform varying i from 1 by 1 until i > max move i to formatter invoke callBack::SendMessage(formatter) end-perform. end method. end Class. CLASS-ID Callback implements type ICallBack METHOD-ID SendMessage PROCEDURE DIVISION using by value msg as string. display "Cobol Says&quo
[Migrated content. Thread originally posted on 16 June 2011]Hello I have a cobol program with which I read a MySQL database with InstanatSql compiles without errors but the error run the following commands:desrcs@may2:/usr/acct/Inst-InstantSQL/ftes$ runcobol85 sample1.cob L=/usr/acct/Inst-InstantSQL/ftes/libisql.soRM/COBOL Runtime - Version 12.02 for Linux Intel 32-Bit.RM/COBOL Runtime System issued to IT Innovation & Technology S.A. de.Configured for 10 users.Arrendadora RamaCopyright (c) 1985-2008 by Liant Software Corp. All rights reserved.Registration Number: 6E-1000-25620-0010COBOL procedure error 213 (library not found). Error processing library /usr/acct/Inst-InstantSQL/ftes/libisql.so.COBOL procedure error 214 (library not valid). Error starting application sample1.cob.
[Migrated content. Thread originally posted on 14 June 2011]In Chapter 7 of the Microfocus support documentation under Data Sources the document indicates that when Net Express is installed two data source names (DSN's) are created automatically. "Netexpress Sample1 and Net Express Sample 2" that point to sample access databases (demo.mdb & sample.mdb) that are installed as part of NetExpress in the \\demo\\smpldata directory. I am unable to locate these.... did I miss something on the intial install? I am trying to see if the connection to the database works. I need to get this connection working in order to debug programs so I was going to try and set up OpenESQL to try and access the database via an ODBC driver. Any advice would be much apprecaited.
[Migrated content. Thread originally posted on 02 June 2011]I am a bit frustrated and hope that someone can assist me. I have been trying to set up the debugger portion of Micro Focus with little luck. I created a project (thru IDE as suggested a while back) I have added the necessary cobol files and copybooks. However, once I start animating and stepping thru the process the animation stops with the following error "173 called program file not found in drive/directory PTPSQLRT" However, that file is in the directory. I have tried adding values for cobpath, cobdir etc. to no avail. The documentation only provides you with instuctions about creating a project but it doesn't get any deeper then that. Something is missing or not set up correctly. I have tried just about everything ( I mean the directions don't fully explain everything that needs to be done in order to get this running. The error is quite generic and can happen in a number of applications. Can someone t
[Migrated content. Thread originally posted on 07 June 2011]I have Visual COBOL installed as a standalone version but would like to try out multi-language support with the trial of Visual Studio 2010. Will Visual COBOL recognize Visual Studio 2010 if installed after Visual COBOL, or is Visual Studio 2010 required to be installed prior to Visual COBOL? Help appreciated! Thank you!
[Migrated content. Thread originally posted on 08 March 2011]Whenever I have questions about Excel in acuCOBOL, first place I will check is the old forum. So for convenience, I just copy most links here for reference to all who are concerning with EXCEL related issues. These are the results searched in old forum.Hope it is helpful.1.Excel Question 2.event keypress in activex 3.Spreadsheet OWC - Impossible to find member4.Cell manipulations in Excel 5.Excel OLE Sample6.Excel 2003 on windows XP works, but not on windows 2003 server7.How to improve the performance with Excel in acuCOBOL?8.numeric data in Excel9.Creating cake or bar graphs 10.Printing from EXCEL11. "CREATE" Statement 12.Excel comments13.Grid - Drag&Drop - Copy to clipboard 14.read from excel15.Excel: PageSetup.Zoom16.Retrieving Information from Excel 17.xls file...18.Opening pdf, word, excel ...etc from Cobol 19.Modifying Xvalue of Chart in Excel 20.Excel and borders 21.Saving Excel file as .prn22.stopping Ex
[Migrated content. Thread originally posted on 17 March 2011]Microfocus will support RM/Cobol till 2014 and there is no end-of-life announcement.What does this mean for future compatibility with new versions of operating systems ?What if the current RM/COBOL V12 is not compatible with a future Microsoft Server release ?Is there going to be a new RM/COBOL version for that ?What happens if customers who use our application with an RM/Cobol V12 runtime wants to upgrade their OS to this new version ? How long will we be able to sell RM/COBOL runtimes (with a support contract) ? Also after 2014 ?
[Migrated content. Thread originally posted on 20 May 2011]Hello,I have a website that run with acucobol cgi scripts. Now we want integrate some php code within the pages generated by our cgi scripts. The problem is that the output of the cobol program that runs the cgi (created via displays) is sent directly to navigator and the server does not interpret the php code embedded on page.As a possible solution we plan to run the php code via call system using "php-p something.php >> outputfile" and then the cobol program to read the file outputfile and integrate it into the page but does not seem a very good solution.Any help will be appreciated.
[Migrated content. Thread originally posted on 06 June 2011]I have some remarks concerning the installation of Visual Cobol R3 trial for 30 days :- In the mail that was send, there was a link to a readme file for Eclipse, but this link did not work . I always got the message "Download failed! Please follow the link from the email again."? and I tried it in Firefox and Microsoft Explorer. - It is not possible for me to make a Cobol JVM project ,I have only two choices : - Cobol project or Cobol remote project.I want to give a demonstration for my colleagues, because we recently moved from mainframe cobol to JEE, so it must be possible for me to make a JVM project.- Some new syntax does give warnings (exc.the program for Managed Cobol Performance Programming - part 1 and 3How can that been solved?- In the presentation of 20th of january they mentioned that all programs would be available at the forum, but I did not find any, can you tell me where I can find those programs s
[Migrated content. Thread originally posted on 06 June 2011]Does any one know if this event is on tomorrow because I have received no information about it even though I did register for the 8am BST one?ThanksNeil.
[Migrated content. Thread originally posted on 06 June 2011]Hello,I am trying to precompile some programs using pro*cobol from the command line.I am how ever having issues as the procompiler cannot expand the copyfiles. I have noticed that if the extension is .cob it seems to like it how ever if I use .cpy it does not find it (can this behaviour be changed). I know about the CP preprocessor and the COBCPY env variable usage in the IDE, but how do we use them from the command line ?I was able to do this via the IDE setting the P(COBSQL) p(cp) ENDP; directive. How ever I am not sure how to do this via the command line.Thanks-PTeng
[Migrated content. Thread originally posted on 23 May 2011]Hi,I'm new to netexpress COBOL, having worked on mainframes for years. Is there a way, when creating screens, that I can make the value in one selection box dependent on a value put in another without having to code it in the COBOL program itself? Thanks!
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.