Search results

  1. J

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

    afraid that you can't. You have to manually copy the properties
  2. 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...
  3. 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...
  4. 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.
  5. J

    Question Program crashing out

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

    list files in a folder

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