Recent content by fjpomares

  1. F

    Question incomprehensible behavior

    Hello. I have develope a procedure to do massive changes in data base. This is like that: FOR EACH aljarafe.Permisos WHERE aljarafe.Permisos.UsrId <> '' AND aljarafe.Permisos.UsrId <> ? EXCLUSIVE-LOCK: aljarafe.Permisos.UsrId = ttusuarios.usunew. End. FOR EACH tribu.AccGenUsu...
  2. F

    Error Adding file to procedure library

    Tanks all. I use OE10 with Windows OS. I use -codepage ISO8859-1 with PROLIB, which is the same that use for developing. Before use PL file, i haven't got problem with filename with "ñ". I solve the problem renaming the file without "ñ", but I really know because this behavior. Thanks
  3. F

    Error Adding file to procedure library

    I have create a PL file to add all my image file, but I have problem with file name with "ñ". I use ISO8859-1, but in the PL file this image with "ñ" in file name are adding with strange character intead of "ñ". When a program search the image file with "ñ" in the PL, it doesn´t found. What...
  4. F

    Retry record locking

    I already know the reason for the problem. Since the first time that FIND CURRENT return NOT AVAILABLE AND LOCKED, the record is no longer available for each REPEAT FIND CURRENT iteration. It is necesary find the record newly. Tanks.
  5. F

    Retry record locking

    It's a test. It work the same without RELEASE CABEOFERV. While user1 stay in message "pausa" the record is locked and the User2 stay in message "Locked ¿Retry?". When User1 end, I check that the record is not locked (The _lock table is empty), however in user2 code, the repeat FIND CURRENT...
  6. F

    Retry record locking

    I want a user can retry to lock a record as following: user 1 run: FIND FIRST CABEOFERV EXCLUSIVE-LOCK NO-WAIT NO-ERROR. MESSAGE "pausa" VIEW-AS ALERT-BOX. RELEASE CABEOFERV. User 2 run: DEFINE VARIABLE lRetry AS LOGICAL NO-UNDO. FIND FIRST CABEOFERV NO-LOCK. REPEAT: FIND CURRENT CABEOFERV...
  7. F

    Student guide

    Hello. Some years ago I learned progress 8 with a student guide. It was a good documentation to start with and It had a lot of example with Sport database. Are there this type of documentation for version 10 or 11? can it be shared? Thanks.
  8. F

    PCase

    Exactly, that is the link. Thanks Cringer.
  9. F

    PCase

    I'm interesting in this tool and I'd like to know the experience of other people with it. Is It easy to do DB schema change in both direction? Can I do any DB schema change in PCase without limitation? Any other limitations of that tool? Thank you
  10. F

    Question smtpmail.p and error message

    Hello. I changed the user that made the connection and the error no longer appears. Now the error is "Unrecognized authentication type". The server mail need TLS conection. How can I do it with smtpmail.p? Thanks.
  11. F

    Question smtpmail.p and error message

    Hello everybody. First of all, sorry for my english. I have been using smtpmail.p some years ago with a Exchange mail server in our intranet. Now I will use a external mail server, but first I have to probe my programs work propertly with it. But It return "Invalid domain name". do Anyone...
Top