Recent content by Dries Feys

  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?
Top