Search results

  1. mrobles

    Progress to Word

    This example assumes that the data are delimited with '**' FOR EACH customer. run sr('**nombre**',customer.name). run sr('**direccion**',customer.address). END. Procedure sr. DEFINE INPUT PARAMETER busca AS CHAR. DEFINE INPUT PARAMETER cambia AS CHAR...
  2. mrobles

    Problem with (shared) record buffers

    He lost the opportunity.
  3. mrobles

    Fill-in xx will not fit in frame in program

    This can help you, but pay special attention to the previous recommendation CURRENT-WINDOW:WIDTH = 250. SELECT * FROM customer WITH WIDTH 250.
  4. mrobles

    Adding a trigger to an existing table

    The delta can contains the trigger. Example: UPDATE TABLE "abc" TABLE-TRIGGER "DELETE" OVERRIDE PROCEDURE "abc_d.p" CRC "?" TABLE-TRIGGER "WRITE" OVERRIDE PROCEDURE "abc_w.p" CRC "?"
  5. mrobles

    import from excel to progress, number in excel should be char in Progress

    Before the load put this in your code: SESSION:SET-NUMERIC-FORMAT(",",".").
  6. mrobles

    Exit Button not working!

    Wait-for close of this-procedure.
  7. mrobles

    Creating Digital Signature

    Try openssl. At night i'll send you whow I use it for electronic invoices Mario
  8. mrobles

    create / display chart

    Re: chart to web Save as htm chExcelApplication:activeWorkBook:Saveas('c:\WorkDir\x.htm', 44 ,,,,,).
  9. mrobles

    create / display chart

    The problem may be the shapes's name due the language. I use spanish chWorkbook:ActiveSheet:Shapes:range("Gráfico 2"):TOP = 12.5 * (delta + 1). chWorkbook:ActiveSheet:Shapes:range("Gráfico 2"):LEFT = 320. chWorkbook:ActiveSheet:Shapes:range("Gráfico 2"):WIDTH = 250...
  10. mrobles

    create / display chart

    To save use one chExcelApplication:activeWorkBook:SaveAs('c:\XDir\wrk.csv', 24,,,,,). chExcelApplication:activeWorkBook:SaveAs('c:\XDir\wrk.xls', -4143 ,,,,,).
  11. mrobles

    create / display chart

    /* Full example */ DEFINE variable chExcelApplication AS COM-HANDLE. DEFINE variable chWorkbook AS COM-HANDLE. DEFINE variable chWorksheet AS COM-HANDLE. DEFINE variable chChart AS COM-HANDLE. CREATE "Excel.Application" chExcelApplication...
  12. mrobles

    create / display chart

    chWorkSheet:Range("B4:B6,C4:C6"):Select. chWorkbook:Charts:Add. chWorkbook:ActiveChart:ChartType = 57. /* Horizontal Bar */
  13. mrobles

    Excel: Select row(s) using a var

    hWorkSheet:rows(RowToSelect):select
  14. mrobles

    API's excel page setup adjust

    Hi Ok. This is excel.i updated
  15. mrobles

    API's excel page setup adjust

    Hi again Gasomma chWorkSheet:PageSetup:Zoom = 70. I don't remember if it is in the excel.i file (Do you remember?)
  16. mrobles

    I want to do a Word merge, using a Progress program

    Hi Why merge in word? Where is the data source? If I need to manipulate records then I use tables.
  17. mrobles

    error1005

    It sounds like 1) You run Progr_1 then 2) Progr_1 runs Progr_2 3) Progr_2 runs Progr_1 using parameters
  18. mrobles

    Validate using progress 9.1d

    Hi This trigger in the usuario table controls the 3rd character. TRIGGER PROCEDURE FOR CREATE OF usuario. IF NOT(SUBSTRING(idproy,3,1) >= 'A' and SUBSTRING(idproy,3,1) <= 'I) THEN RETURN ERROR.
  19. mrobles

    Validate using progress 9.1d

    Ok, Ok. This is due the validation code acts when you are typing data. May be a create trigger in the table lets you control it.
  20. mrobles

    Validate using progress 9.1d

    Hi. 1.- May be you have a normalization problem. For this validation I use a table (proyect in this case and containing proyects) and the validation is CAN-FIND(proyect OF usuario) 2.- The format of your field reduces your validation code. You can use in the format field XXX-999999 If...
Back
Top