Recent content by Reginaldo Leandro

  1. R

    Connection through Progress

    I'm trying to connect to a host using the CONNECT command in Progress, but it's returning a connection failure, but when trying to do it through Postman, the sending is done correctly. Could someone tell me what is missing to connect through Progress? Below is the code I ran to make the...
  2. R

    RemoveDuplicates

    Here is what I have tried in Progress 4gl: PROCEDURE pi-elimina-duplicata: DEFINE VARIABLE v-chr-excel-application AS COM-HANDLE NO-UNDO. DEFINE VARIABLE v-chr-work-book AS COM-HANDLE NO-UNDO. DEFINE VARIABLE v-chr-work-sheet AS COM-HANDLE NO-UNDO. DEFINE VARIABLE v-chr-range AS...
  3. R

    RemoveDuplicates

    Has anyone used Excel's RemoveDuplicates method in Progress 4GL? Could you tell me what the syntax is? Example in VBA ActiveSheet.Range("A1:C100").RemoveDuplicates Columns:=Array(1,2), Header:=xlYes
  4. R

    Browse field losing focus

    One detail, when I run the program through the App Builder, this problem does not occur.
  5. R

    Browse field losing focus

    Yes, I tried. This is the double click trigger code: DO: find user-coml where user-coml.usuario = c-seg-usuario no-lock no-error. IF AVAIL tt-item AND tt-item.selecionado = '' THEN DO: ASSIGN tt-item.selecionado = '*'. RUN pi-valida-item. IF...
  6. R

    Browse field losing focus

    I also commented on this part, still without success.
  7. R

    Browse field losing focus

    It seems that the loss of focus does not occur because of some event that is being executed, it seems to me that some command, property or configuration of the browse br-itens is causing this.
  8. R

    Browse field losing focus

    It would be this one. I commented out the open-query in browse br-itens, but the focus loss continues.
  9. R

    Browse field losing focus

    Attached the program code.
  10. R

    Browse field losing focus

    Hello, I have a quantity field, in a freeform browser, and when I double click on this field, without any event being executed afterwards, it loses focus. Please, does anyone know how to solve this case?
Top