Search results

  1. J

    How can i kill excelAPP Process?

    excelAPP:QUIT(). RELEASE OBJECT chWorkSheet. RELEASE OBJECT excelAPP. The solution.
  2. J

    How can i kill excelAPP Process?

    Hello everyone,i would like to know how can i kill the instance of microsoft excel? For example,when i printed a report that's using microsoft excel in the aba of Processes(Windows Task manager) there's a lot of EXCEL.EXE*32 process ,consuming memory. Jefferson
  3. J

    Verifying the outlook version

    To check the version i've found the solution. /* Office 2007 */ IF INTEGER(excelAPP:version) >= 12 THEN display "office 2007". But one doubt , how can i call the outlook express if the client doesn't have a outlook 2007 installed on his machine?
  4. J

    Verifying the outlook version

    Hello everybody, Would like to know, is there some way to check the version or if it is available of the outlook? DEFINE VARIABLE m-objOutlook AS COM-HANDLE NO-UNDO. DEFINE VARIABLE m-objoutlookMsg AS COM-HANDLE NO-UNDO. DEF VAR i-pathdoc AS CHAR...
  5. J

    Report: Excel Format and PDF.

    Thanks Mike the link was very useful. I found a solution to my problem. /* Program created by Jefferson S nascimento. 12/11/2010 São Paulo - Brazil Generating PDF via excel(only work with version 2007 or 2010) */ DEF VAR excelAPP AS COM-HANDLE NO-UNDO. DEF...
  6. J

    Report: Excel Format and PDF.

    I'v heard some comments about a kind of library called vpxPrint or xprint(something near of it). Anyway have already use?
  7. J

    Case statement

    Hello guy,i hope that example can help you. Any doubt let me know. Jefferson DEFINE VARIABLE cont AS INT NO-UNDO INIT 1 . DEFINE VARIABLE aux AS DEC NO-UNDO EXTENT 4. DO WHILE cont < 5: CASE cont: WHEN 1 THEN aux[1] = cont * cont + 1 . WHEN 2 THEN aux[2] = cont *...
  8. J

    Report: Excel Format and PDF.

    Good morning everybody this is my first post. I would like to know if exist some component to "convert" a reporter that was made using excel format (ExcelAPP and other's) to PDF. Nowadays we create (in the company that I work) the reporters in a PDF format using a kind of command's that look...
Back
Top