Recent content by jmls

  1. J

    Question Dynamic Browse Widget in Class File

    they never get a break
  2. J

    Question Dynamic Browse Widget in Class File

    how about (written in the Chrome IDE)
  3. J

    Named arguments for ABL procedures.

    Sorry this is not what you want - but please try and avoid using preprocessors - for your sake and the poor bastards that will have to maintain the code after you. A long long time ago when the ABL was the 4GL and we didn't have parameters or persistent procedures (v3-v5 I seem to remember)...
  4. J

    When something is not true

    try for each tray no-lock where tf-own = l-cus and tf-type >= l-type1 and tf-type <= l-type2 and tf-delete-date = ?, each item no-lock where if-tray = tf-tray and if-delete-date = ? break by tf-tray: if last-of (tf-tray) then do: find first hist no-lock where hi-itm = if-item-no no-error...
  5. J

    PASOE - Blocking connection somewhat randomly

    check your pasoe memory usage. If you have a leak and it consumes all memory often the only way to recover the machine is to reboot it. While you are hunting for leaks, you can always trim the agents
  6. J

    Question OOABL/4GL - How do you clone and object?

    afraid that you can't. You have to manually copy the properties
  7. J

    Answered Chained Methods. Example Required.

    you have to make a method return an instance of the class itself. Because this is an object that is returned, you can then invoke another method on the returned object so: class foo: def property bar as char no-undo get . set . method public foo MethodA(): /** do stuff */ return...
  8. J

    Help with 'begins' Progress Results please

    the \ is an escape character so, your initial begins "\\" actually is begins "\" - there are records that match this (all starting with \ and \) this means that begins "\\thisserver" is actually begins "\thisserver" , but there are no records with this pattern you could try begins...
  9. J

    Question Converting Applbuilder Files from Progress 9 to 11.3

    you should be able to simply load the 9.1 code into the 11.3 appbuilder - be careful about free-form queries though.
  10. J

    Question Program crashing out

    do you have any protrace.** files ? They are text files which may indicate where the crash happened
  11. J

    list files in a folder

    platform ? Windows / linux ? Progress version ? There are some useful stuff in .net
Back
Top