Recent content by PeterB

  1. PeterB

    How long has this been wrong?

    In this times it might take a while to produce a brandnew "n" ....
  2. PeterB

    How to replace entire occurence of a character.

    No problem. DEFINE VARIABLE cList AS CHARACTER NO-UNDO. DEFINE VARIABLE cToBeRepl AS CHARACTER NO-UNDO. DEFINE VARIABLE cReplWith AS CHARACTER NO-UNDO. cList = "demo,demo1,system,test,demo". cToBeRepl = "demo". cReplWith = "admin". DO WHILE LOOKUP (cToBeRepl, cList) >...
  3. PeterB

    How to replace entire occurence of a character.

    How about this: DEFINE VARIABLE cList AS CHARACTER NO-UNDO. DEFINE VARIABLE cToBeRepl AS CHARACTER NO-UNDO. DEFINE VARIABLE cReplWith AS CHARACTER NO-UNDO. DEFINE VARIABLE iLookup AS INTEGER NO-UNDO. cList = "demo,demo1,system,test". cToBeRepl = "demo". cReplWith...
  4. PeterB

    Answered question on query

    It is really not too easy to find it in the doc. You have to know that you look in the "record phrase" section and not the "FOR" section of ABL doc.
  5. PeterB

    Answered question on query

    Hi Boby, with the optional FIELDS option you can define a list of <tablename> fields the server shall send to you. Makes sense in a client server environment to reduce network traffic depending on the number of fields in a table. By Default you get all fields. BR, Peter
Top