Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
[Migrated content. Thread originally posted on 15 March 2007]We loaded our application on Windows Vista and it is not able to create files in the root directory. Does anybody know if there is a setting in Windows that controls this? We have made sure that the user has full permissions in the root directory. We can create Folders in the root, just not files. Even if we try to create a shortcut in the root directory, windows says we do not have permission to do so.This problem came up because our application creates a lock file in the root directory to prevent more than one instance of the application running on a single PC. I know that we could make a code change to use a sub directory for the lock file, but we were hoping we would be able to get around doing that.Anybody have any ideas on changing Windows to allow for file creation in the root directory?
[Migrated content. Thread originally posted on 28 June 2007]Hi,When upgrading from Acu 5.2 to 7.2 and glibc 2.2 to glibc 2.3 (RHEL2 to RHEL4), some of our users are getting these errors:-*** glibc detected *** double free or corruption*** glibc detected *** free() : invalid next size(fast)Has anyone seen (or hopefully resolved) these errors before?We thought we had resolved it on one site by recompiling their object using version 7.2 compiler, but it didn't help with the other site that is exhibiting the same behaviour. The old object works fine on the old run-time. It doesn't happen in all programs, but it is repeatable in those that do exhibit the error.I've sent the issue to tech-support, so this is a general query to see if anyone else has come across it before.Thanks,Ian
[Migrated content. Thread originally posted on 28 February 2007]quisiera saber si han habido algunos cambios en lo que se refiere a la impresion desde un punto remoto como si fuera local.gracias
[Migrated content. Thread originally posted on 15 February 2007]One of my customers wants to secure all communications using digital certificates utilizing encrypted IPsec traffic.Does anyone know if this will impact the use of Acuconnect? thanks!
[Migrated content. Thread originally posted on 09 March 2007]HelloI am running version 6.2 with AcuSQL. I am running a thread in a program that pulls records from a SQL Server table using the following code: EXEC SQL DECLARE COBCURDW CURSOR FOR SELECT COUNT(HDL_PK) FROM VW_TBL_HANDLERDAILY_WITH_NAMES_FARM WITH (NOLOCK) WHERE FARM = :SEL-FARM-NUM AND MMYYYY = :SEL-MMYYYY AND HMMYYYY = :SEL-MMYYYY FOR READ ONLY END-EXEC EXEC SQL OPEN COBCURDW END-EXEC EXEC SQL FETCH COBCURDW INTO :WS-Count-Weights END-EXEC EXEC SQL CLOSE COBCURDW END-EXECOnce this thread is running I cannot seem to stop it programmatically or switch to another thread until the SQL search has completed. Is there any way to stop or interrupt an SQL search or pass a control break to SQL Server?
[Migrated content. Thread originally posted on 15 December 2006]Hi I want to know how many users opened a .dat file programatically? In other way how to know whether a.dat file is opened by any other user or not.Please help me
[Migrated content. Thread originally posted on 09 November 2006]Hello,does anybody have any experience with creating a menu with ActiveX that looks more Office2000 / 2003 / XP like ?Thanks in advance :D Steen
[Migrated content. Thread originally posted on 13 December 2006]Se questa ? la vostra prima visita, vi invitiamo a consultare le Frequently Asked Questions (in inglese) cliccando in alto a questa pagina sul link ?f.a.q.?. Per poter pubblicare messaggi sul forum ? necessario prima registrarsi cliccando in alto sul link ?register?. Per accedere ai messaggi, selezionate dalla lista seguente il forum a cui volete partecipare:? Generale? Interoperabilit? tra linguaggi ? Programmazione grafica/ActiveX? Linux e UNIX? Funzionalit? potenziate in extendVi aspettiamo numerosi!
[Migrated content. Thread originally posted on 06 November 2006]:confused: Hello, everyoneThis question is about the Open-Save dialog box "c$opensave".Is it possible to select more than one file in the open function?Thanks!
[Migrated content. Thread originally posted on 12 October 2006]I have a issue using richtext box methodsall file are only seen and placed in the local bin directoryI need to find what the path that thin client uses to execute the application in which case I can then string it all togetherin order to place rtf files on server.:(
[Migrated content. Thread originally posted on 15 November 2006]In moving our application from 6.2 to 7.2 I'm getting a sortfile 3002 error and 'Can't make temp file' on our reports that use temp files and sort. I'm using AcuThin and my sort_dir and temp_dir are both set to ./What change in 7.2 am I missing that might cause this? The server is unix and the client is on windows.
[Migrated content. Thread originally posted on 08 February 2007]Has anyone been able to successfully embed a Bulk Collect PL/SQL statement into an AcuCobol-GT program? This code generates a precompiler error:Working Storage: EXEC SQL BEGIN DECLARE SECTION END-EXEC. 01 ARRAY-GROUP-LEVEL-NAME. 02 ACCT-NO-ROW OCCURS 10. 03 ACCT-NO PIC X(10). EXEC SQL END DECLARE SECTION END-EXEC.Procedure: exec sql execute BEGIN SELECT ACCT_NO BULK COLLECT INTO :ARRAY-GROUP-LEVEL-NAME FROM ABC-TABLE WHERE AR_APN = :DB-SEARCH-ITEM END; end-exec;Error: PCB-S-00204, Group item ARRAY-GROUP-LEVEL-NAME cannot be used except in INTO or VALUES clauseIf I use the item level variable ACCT-NO it gives me a different error saying to use a GROUP item.I've written and rewritten this a hundred times trying everything.Anyo
[Migrated content. Thread originally posted on 30 November 2006]Windows Application Development with AcuBench? and ACUCOBOL?-GTHands-On TrainingAcucorp's Office, Twickenham, UK February 5-8, 2007 Led by our team of experienced Systems Engineers, Acucorp's training course provides intensive instruction on a wide variety of extend?7 development and deployment solutions. Held at our Acucorp office in Twickenham, the four-day workshop includes practical tutorials and exercises on Acucorp's ACUCOBOL-GT development system and AcuBench integrated development environment. This hands-on course includes detailed information on AcuBench and ACUCOBOL-GT, the best tools for COBOL Windows development. As an attendee, you will: ? Become productive using AcuBench for all phases of the application development cycle (design, coding, and testing)? Receive an overview of the extend7 components? Receive introductions to project management and configuration, graphical designers, the integrated d
[Migrated content. Thread originally posted on 05 October 2006]Hi, I am currently working on a project which requirest crystal com automation from acucobol. As part of this project I need to pass a variant array to a COM component. I used c$setvariant to create array and working fine with standalone pc. When I want to run this program on Linux acuconnect server c$servariant not working and from the documentation I found that it is not supported in thin client environment. Can anyone provide me some details on alternate approach.Here is my sample program. 01 WS-ROW. 05 WS-ROW-ARRAY OCCURS 10 TIMES . 10 WS-FLD-ARRAY OCCURS 3 TIMES. 15 WS-FLD USAGE HANDLE OF VARIANT. PERFORM VARYING SUB-SX FROM 1 BY 1 UNTIL SUB-SX > 10 MOVE SPACES TO WS-STR STRING "ID_" SUB-SX DELIMITED BY SIZE INTO WS-STR END-STRING CALL &quo
[Migrated content. Thread originally posted on 17 January 2007]I'm just curious, has anyone else noticed that the exit status of the runtime no longer reflects the state of the runtime at the time it exits? In the latest version it reports as the exit status the result of itself or the last internal exit status, such as to a file rename or other call.Brad
[Migrated content. Thread originally posted on 22 January 2007]Has anyone ever found a way to correctly handle paged list box with a DUPLICATE KEY. The code examples work fine when the key is unique (primary key, etc). However, if the secondary key is a duplicate and there are indeed duplicate records in the file (many of them), the recommended code acts erratically.I am beginning to think the best solution is to remake the file and eliminate the duplicate key by appending the primary key. That, of course, will require a file conversion, which postpones the fix to our next general release.Thanks,Larry
[Migrated content. Thread originally posted on 27 October 2006]Has anyone been able to get AcuODBC to work on a machine running Windows Server 2003 64 bit edition?I have a customer that purchased a new server with Windows Server 2003 64 bit edition on it and they are trying to load AcuODBC 7.0 on it and it will not install correctly. All of the AcuODBC files get installed, but the AcuODBC Driver does not appear in the ODBC Data Source Administrator.I manually went into the Windows registry and created an AcuODBC Driver key under HKEY_LOCAL_MACHINE\\SOFTWARE\\ODBC\\ODBCINST.INI. I created all of the values that should be under the AcuODBC Driver key as well. I also created an ACUODBC DRIVER value under HKEY_LOCAL_MACHINE\\SOFTWARE\\ODBC\\ODBCINST.INI\\ODBC Drivers with the value of "Installed". Manually creating these keys and values made the AcuODBC Driver available in the ODBC Data Source Administrator. However, when I try to create a DSN, I get this error: "The se
[Migrated content. Thread originally posted on 16 November 2006]On Rebuilding a file, I sometimes get the message : xx broken records (xx= number). these records are then lost.Can someone explain to me how you get broken records? and what I can do to prevent this from happening?Marelize:confused:
[Migrated content. Thread originally posted on 27 January 2007]We have a program that allows us to send emails using msmapi32. We are attempting to add the ability for a user to select email addresses from their address book. MODIFY MYMESSAGE @SHOW().The first time this method is used, it works fine! However, subsequent attempts do nothing. Has anyone had success with the SHOW method? I have attached the entire program.Thanks if you can provide any hints or links!
[Migrated content. Thread originally posted on 20 January 2007]I want to change the shape of the mouse while I am dragging whithin a grid.I tried using "W$MOUSE USING SET-MOUSE-SHAPE, WAIT POINTER" at the start (MSG-BEGIN-DRAG) and also while dragging (MSG-GOTO-CELL-DRAG) but it doesn't change (of it changes and gets reset immediately after).I also added ALLOW-LEFT-DOWN and ALLOW-MOUSE-MOVE to MOUSE-FLAGS but nothing seems to work.Is there a way around this because I think this is controlled at low level.Andre
[Migrated content. Thread originally posted on 04 December 2006]In thin client is there a way to allow a user to login only one time.We have a problem where most users we want to restrict them from loging into thin client more than one time and 1 or 2 users at each location to be able to log in 2 times to have 2 screens up.Does anyone know how to control this.Thanks
[Migrated content. Thread originally posted on 25 January 2007]I want to retrieve the name of the default email client (just the name, I don't want to actually launch it) found in the registry at:HKLM\\Software\\Clients\\MailSo I have the following call:CALL "REG_QUERY_VALUE" USING HKEY_LOCAL_MACHINE, Q-RESULT, Q-RESULT-SIZE, Q-SUBKEY GIVING Q-STATUS.But I think it's trying to bring back every entry under that subkey, because I get a status of 234 which means that the result is too large for Q-RESULT. Is there a way to only get the (Default) data value (i.e. "Outlook Express" in this case)? Or do I have to somehow enumerate the results?
[Migrated content. Thread originally posted on 19 October 2006]We are running THIN Client (release 6.2.0) on LINUX. Our application allows multiple sessions to be accessed of the same application program that has 2 major screens that the user can use ALT/xx keys to switch back and forth between. One of our screens is executed as an event of a button of the other. Our users have been complaining that they see the 2nd screen from one thread in the other thread. While trying to investigate this problem, I noticed that when I click on the windows tasbar icons of one screen, it will, after some clicking back and forth, begin to show the wrong associated threads. Yet when I use ALT/TAB to move between the taskbar icons, it consistantly works fine.(1) Is this a known problem with AcuCobol thin client?(2) Is there any code anyone knows of where i can ensure that the taskbar click is ALWAYS associated with the thread it is supposed to be associated with?
[Migrated content. Thread originally posted on 12 February 2007]Can someone please help me translate the next macro to create 2 lines in excel.Thanks. ActiveSheet.Shapes.AddLine(275.25, 124.5, 275.25, 282.75).Select Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadTriangle Selection.ShapeRange.Line.EndArrowheadLength = msoArrowheadLengthMedium Selection.ShapeRange.Line.EndArrowheadWidth = msoArrowheadWidthMedium Selection.ShapeRange.Flip msoFlipVertical ActiveSheet.Shapes.AddLine(275.25, 281.25, 375#, 281.25).Select Selection.ShapeRange.Line.EndArrowheadStyle = msoArrowheadTriangle Selection.ShapeRange.Line.EndArrowheadLength = msoArrowheadLengthMedium Selection.ShapeRange.Line.EndArrowheadWidth = msoArrowheadWidthMedium
[Migrated content. Thread originally posted on 09 November 2006]Hi,OK, we have a program in our application which has the ability to allow a user to click a button using an event procedure, it uses event because I don't want the after procedure to trigger etc.Now, because we make use of multi threading, this button pushing has the potential to allow the user to be in another program, but get back to the start and press the same button again.If upon pressing the button I modify the screen's VISIBLE control to FALSE, then when he eventually realizes that he has to close something down to get back modify it back to TRUE is it likely to cause me any grief.It seems to work a treat, but does the modifying cause lots of network traffic etc?I also do it in another place in the same program which does indeed tidy things up greatly from the users graphical view of what they can see.Thanks,Shaun
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.