Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ted95242

    Screen Designer List Box

    Assuming you are working in the acubench, the first thing after creating the list box window is to go to the property window and set up the columns setting. Ted
  2. ted95242

    SLOW FILE ACCES WITH ACUCOBOL GT-5.2

    Here is another possible solution. This was in Acucorps newsletter for June. Ted =================================== File Access to Windows Shared Files =================================== On Windows systems, the speed of file access to Vision files located on a Windows shared drive can...
  3. ted95242

    SLOW FILE ACCES WITH ACUCOBOL GT-5.2

    Using Acucorps "thin client" will solve the problem. Ted
  4. ted95242

    AcuCobol Printer Pitch configuration

    Sorry, I failed to mention that you need to copy "winprint.def" into your working storage section. This file is supplied by Acucorp on the installation disk. Ted
  5. ted95242

    AcuCobol Printer Pitch configuration

    Here is a routine that works for setting up a laser printer in Acucobol. The first call sets up a default font; The second call gets the current setting so they can be reset if necessary; The third call sets the font to compressed print so you can print 132 columns; The last two calls sets the...
  6. ted95242

    EVENTS FOR ACUCORP

    Sorry, I didn't realize how hard it would be to debug an acubench program without seeing all of the elements. Have you tried running debug on it? Ted
  7. ted95242

    EVENTS FOR ACUCORP

    Sorry for the confusion. Could you post your after procedure for the field you are having the problem with? That would make it easier to see what is going on. Ted
  8. ted95242

    EVENTS FOR ACUCORP

    You control which field gets focus by setting the accept-control and the control-id fields. The control-id would contain the ID number for the field you want to return to. This should be set in your after procedure for the field. Ted
  9. ted95242

    EVENTS FOR ACUCORP

    Take a look at the tab order of each field. The after procedure for the field where the user enters the code won't be executed until after you press tab or enter. When you return from the called program, called by the after procedure, focus should be on the next field as specified by the tab...
  10. ted95242

    Just wondering if anyone has come a

    Tom, That solved the problem. I guess reading the manual every now and then does help. :) Thanks Tom. Ted
  11. ted95242

    Just wondering if anyone has come a

    Just wondering if anyone has come across this one before. I just got a new computer and went from Windows 98 to XP. In one program I issue the following cobol statement: 01 wa-work-area. 05 wa-dos-command pic x(30) value "dir /b *.src-arc > dirlist.txt" call...
  12. ted95242

    USER COUNT: -1

    Here is what the manual says about the user count. I have never seen a negative user count myself but it sounds like there might be a problem with the runtime. Have you talked to Acucorp about it? Ted A value of note is the "user count". This value starts at zero, and is...
  13. ted95242

    EVENTS FOR ACUCORP

    Are you using the acubench? I have written a number of programs now using their gui tools and they work great. Also, what is the development system version? Ted
  14. ted95242

    de compress data files

    The vutil utility will decompress an indexed file, assuming it is a vision file system file created by an Acucobol application. If not, then I'm not sure. vutil -rebuild -c <filename> will do it if it is a vision file. Ted
  15. ted95242

    Acucorp trainer claims that microfo

    Here is a copy of the page out of the manual that deals with the compiler's compatibility options. It doesn't mention microfocus specifically but if microfocus is like RM Cobol or another variation, perhaps it will work. I'm not specifically familiar with microfocus cobol but I have to assume...
  16. ted95242

    add each number in a variable together...

    Oops, kind of stumbled into something here. Reminds me of the time I hired a rather attractive young lady right out of a private business college. She was recommended because she had such high grades. Came to find out she had sweet talked all the guys in the class into letting her copy their...
  17. ted95242

    add each number in a variable together...

    This should work. Ted =================================== Working-Storage Section. 01 Work-Area. 05 Var-number pic 9(05) value 12345. 05 Var-Num redefines Var-number pic 9(01) occurs 5 times indexed by var-idx. 05...
  18. ted95242

    alternate key

    Was the file created with the alternate key or did you have an existing file with a primary key and then just changed the program to add the alternate key? If so, you will have to create the file with all appropriate keys prior to using the alternate key for reading. Ted
  19. ted95242

    I am using acucobol-GT and acubench

    Sorry, I've used RM-Cobol but not Micro-Focus. There are a number of compatibility option switches in the compiler but I didn't see Micro-focus mentioned specifically. I have converted 2 RM-Cobol systems to Acubobol with very few problems. I'm sure you have already tried this but why not just...
  20. ted95242

    rebuilding data file

    Is it possible that the file was originally compressed and when you rebuilt it, you removed the compression? Here is part of the manual that talks about the different vision files and the compression option. Ted =================================================== The &quot;-4&quot; option...

Part and Inventory Search

Back
Top