Search results

  1. L

    Disconnect Inactive Users in Database - Timeout

    Dear, Someone looking for a solution timeout in the database, ie an automatic way to topple inactive users for a given time (by means inactive, those sessions that did not any kind of transaction in the bank, leaving the session open) . We develop a solution that makes the timeout of idle...
  2. L

    Export to a File Domain and Groups - LDAP or AD

    Version 10.2a
  3. L

    Export to a File Domain and Groups - LDAP or AD

    Hello colleagues, I am Brazilian and translate this text for Google. In need of some help: On the Progress could export to a file the Domain Users and Groups (AD or LDAP)
  4. L

    converting days to year, month and days

    def var dt-data as date no-undo format "99/99/9999" column-label "Data". def var i-dias as integer no-undo column-label "Dias". def var i-mes as integer no-undo column-label "Mês". def var i-ano as integer no-undo column-label "Ano". assign dt-data = 12/08/2003...
  5. L

    Case statement

    for each prospect where: display prosp_id name address active (if active = "yes" then 1 else 0) skip. end.
  6. L

    Questions about formatting Progress data.

    for each prospect: export delimiter "|" prospect. /*** Todos os campos da tabela ****/ end. or for each prospect: export delimiter "|" prospect.prosp_id prospect.name prospect.address prospect.city prospect.state prospect.zip /*** Somente alguns campos da tabela...
  7. L

    Numerical to Character format

    Quando é gerado um arquivo CSV ou texto que será aberto pelo Excel, efetuando a conversão de TEXTO para COLUNAS, o Excel considera como padrão para a coluna o formato GERAL. Neste caso se o campo possui somente número é considerado como NUMÉRICO, onde 000880 passa a ser mostrado 880. Para não...
  8. L

    accumulate into weekly buckets

    Sorry, I'm Brazilian and I do not know much English, I (translated by Google) speak more clear: The attribute is NO-LOCK BREAK-BY after, put the NO-LOCK table after and before the break-BY.
  9. L

    accumulate into weekly buckets

    O NO-LOCK não pode estar depois do BREAK-BY, coloque o NO-LOCK depois do MYTABLE e verifique se continua o erro. for each mytable no-lock break by WeekNumber(mytable.mydate): if last-of(WeekNumber(mytable.mydate)) then do: do stuff end. end. Att...
  10. L

    assign value in excel shapes

    Olá... Tente a seguinte linha de comando: chWorksheet:Shapes("Text Box 105"):Object:VALUE = "asdasdas".
  11. L

    Progress Performance Tuning

    Obrigado a todos pela ajuda, consegui identificar algumas ferramentas que auxiliarão em meu trabalho. Traduzido pelo Google: I am thankful all for the aid, I obtained to identify some tools that will assist in my work. Eduardo Leite
  12. L

    Progress Performance Tuning

    Bom dia, Sou Analista de Sistemas e Programador em Progress aqui no Brasil e gostaria de saber se alguém conhece uma ferramenta para uma análise da perfomance do progress e identificação de possíveis falhas e erros. O progress possui o PROMON, mas este é muito complicado de entender seus...
  13. L

    Temp-Table x Handle (Parâmetro)

    Caros colegas, Sou Brasileiro e não tenho muito conhecimento em Inglês, portanto estou postando esta mensagem em português, mas se alguém conseguir ajudar-me na minha dúvida pode ser em ingles que estarei traduzindo no google, vamos lá: Temos um Sistema ERP (Datasul) que trabalha com...
  14. L

    Como saber os Parâmetros de uma DLL

    Caros colegas, Alguém saberia dizer-me como seria a sintaxe da função abaixo para VB/VBA em Progress, ou seja converter para função Progress: Private Declare Function RegisterWindowMessage _ Lib "user32" Alias "RegisterWindowMessageA" _ (ByVal lpString As String) As Long Private...
  15. L

    Enviar E-Mail Progress x Outlook 2003

    Caros colegas, Alguém conseguiu solução para a mensagem que o Outlook 2003 mostra quando utilizamos o Progress para envio de e-mail: "A program is trying to automatically send e-mail on your behalf. Do you want to allow this? If this is unexpected, it may be a virus and you should choose...
  16. L

    Any Future in Progress???

    Envio E-Mail Progress x Outlook 2003 Caros colegas, Alguém conseguiu solução para a mensagem que o Outlook 2003 mostra quando utilizamos o Progress para envio de e-mail: "A program is trying to automatically send e-mail on your behalf. Do you want to allow this? If this is unexpected...
  17. L

    Put Stream

    Caro colega, Abaixo a linha de programa para impressão direto no computador local, onde gera-se um arquivo e depois executa o comando COPY, copiando o arquivo para a porta da impressora DEF VAR cItCodigo AS CHAR NO-UNDO. DEF VAR cLocaliz AS CHAR NO-UNDO...
Top