Search results

  1. D

    Fastest Way to Get Progress Database Table Into Memory

    Aah, I didn't know of of the existence of this parameter yet (neither does my progress help-file) Anyhow, you can find here some info on those parameters. I'll probably use the dynamic query, but that's because I have to run 6 times the same query with a small change in the where clausule...
  2. D

    Fastest Way to Get Progress Database Table Into Memory

    Hello all, I just joined in this conversation, and also need something similar : I have a table and I need to count the number of records of the table, devided into several types. What is the fastest way to make my count? I have an index to all the appropriate fields. method 1 : dynamic query...
  3. D

    Why does this site charge for the search feature

    Chris, I think you made the right decision to open the basic Search for everybody. Wouldn't it be a good idea to split up some work to some volonteers? I also am a volonteer to a Belgian website (www.folkroddels.be - in Dutch, about folk music), together with 20 others. That site is also still...
  4. D

    crc check

    Casper, Thanks for the response. We develop allthough all the time, and 'release' new versions every moment of the day. (We only do in-house development) All our client-code is stored in a bunch of pl-files (about 70 :) ) These pl-file are being copied to the client-side when they start a...
  5. D

    crc check

    Hello, We're currently developing a automatic compile- and deploysystem. To avoid the compilation of files of which the crc won't change anyway, we would like to build in some kind of crc-check without compiling. So my question : does there exist a routine to compare the crc-value of an...
  6. D

    Question about UIB in OE10

    Hello, We're currently developing a project where we integrate CVS in the version 9 appbuilder. We herefore use the posse-code which can be downloaded from the progress-site. However, we'll migrate to openedge 10 in the near future, and want to integrate those minor changes in that appbuilder...
  7. D

    Postcode/address/maps

    I also can recommend you ViaMichelin.com as map & autoroute provider. Of course you need to look into legacy stuff, because I don't know if it's allowed to query their site frequently...
  8. D

    Error 735

    Make sure you have a backup... First recompile everything (client & server code - in case you have a gui + appserver application) in a test-environment, make sure everything works, en deploy it. Also don't forget to deploy the adm2 when you use it. Check the java version on your server...
  9. D

    Syncronisize with Microsoft Outlook and Lotus Notes

    Herve, Please send me an email and I'll send you a sample.
  10. D

    Debugging Progress Program

    You refer to a .pl-file. This is not really a program-file, but rather a library of multiple files. With the prolib command you can extract or list of the contents of the lib. The content are mostly compiled (.r) files, which can be compiled with met min-size option. In that case it is...
  11. D

    Syncronisize with Microsoft Outlook and Lotus Notes

    We used to have some code for Outlook, but switched some time ago to Notes. Sure is that I have some code for Notes. Mail me if you need some samples.
  12. D

    Overide of Update problem (Smart)

    It is so that the default behaviour is since a few service packs that you can't save what hasn't changed yet. Therefore you must Progress let think that some widget has changed indeed : In the enableFields override of the smartviewer : APPLY "VALUE-CHANGED" TO SomeField. Good luck.
  13. D

    Attrib

    We used to have the same problem. Actually we made 1 general super procedure which collects the most important data (user name,...) These data are collected by use of an include file. /* Start of include file */ def var charName as character. assign charName = dynamic-function('getName':U)...
  14. D

    working with discrete result sets using sdos

    Hello, What you can do is make a comma separated list of different values. Let's name this list charValues Then you make a call (eg in initializeObject) like this. Dynamic-function('setQuerywhere':U in hanSdo, INPUT "for each item where can-do(charValues,item.value)")...
  15. D

    errorlevel

    Why don't you do the error handling from within Progress? It is imo perfect possible to add a MESSAGE 'failed' VIEW-AS ALERT-BOX ERROR at the end of your procedure?
  16. D

    Discover active procedures on appserver

    Hi all, We're using the stateless appserver since a few years succesfully. However, we still have 1 important question for the management of the appservers. We're running several persistent procedures with many internal procedures in each of them. Some of these persistent procedures create...
  17. D

    appserver - error 9407

    Good news! We found out that the problem was the jit-compiler. I found in my archive that there was a problem with 9.1B and the jit-compiler on AIX. I did the same as a few years ago and disabled the jit-compiler. Since then, neither of the appservers crashed again.
  18. D

    appserver - error 9407

    Hello, Our configuration : AIX 4.3 - Progress 9.1d SP 06 - stateless appserver Since a few weeks we have regulary (almost daily) the following error in the appserver server log : [03/11/19@10:26:43.824+0100] P-270662 T-000000 0 AS -- Connection failure for host loopback port...
  19. D

    &glob DATA-LOGIC-PROCEDURE .p 9.1C -> 9.1D

    Thanks for you answer. In the mean time I have found that when I recompile our own smartobjects and all the software, the changes are made automatically. But, our most significant conclusion is that the compiled .r files are often doubled in size. The software itself does run faster, so that is...
  20. D

    &glob DATA-LOGIC-PROCEDURE .p 9.1C -> 9.1D

    Hello, I'm testing a migration from version 9.1C to 9.1D. When I try to open a SDO's created in version 9.1C, I have the get errors about BaseQuery, toggleDatatargets, PromptOnDelete and PromptColumns. I did a diff on 2 SDO's, one I made in 9.1C, and one I made in 9.1D. The most significant...
Top