Search results

  1. S

    File Date & Time

    Ok i've only test with windows but i sav in the kb that file-create-date is for windows only but perhaps file-mod-date works with hp-ux.
  2. S

    File Date & Time

    Hi, take a look to file-info system handle (in your case you can use file-info:file-size for example) Regards. Stéphane.
  3. S

    Same .df-file, but different CRC.

    Hi, for this table you have certianly add a field in the past, add another and deleted the first onf afterall. In this case in the .df you have only the add field and no reference of the deleted field. The CRC take in account the fields _field._field-rpos and in this case the value is different...
  4. S

    Build Month Array

    Sorry, and you can't use 1+1 you must put space around the symbol 1 + 1. Have a good we.
  5. S

    Build Month Array

    Hi, a dd dot at the end of the assign ws-week-date. Stéphane
  6. S

    Outlook inbox??

    HI, this is a VB6 code but you can easily translate in 4GL by replacing . by : where there are properties/methods references. In 2 words, create an object wich point to the MAPI namespace, an other for the folder you want to examine (inbox in your case) and scan the Items list. Hope it helps...
  7. S

    Newbie says hi and needs help

    Progress explorer tool is a Microsoft Managment Console whoch allow you to start/stop your database server with all the parameters you want (as your .bat does but it's more modern). You can manage your can manage appserver and sonic stuff too with progress explorer but i'm not use it so i can't...
  8. S

    Newbie says hi and needs help

    Hi, i suppose your OS is Windows something. So if i'm right you have to start a "nt service" called "AdminService For Progress 9.1C". But if you know how to start your db with proserve you don't need progress explorer. Stéphane.
  9. S

    Access a Record two times in a for-each-statement

    Hi, you can add for example a breaj by table.firma on your for each. It isn't very "clean" but it works. I think that is because the whole for each is keep in memory and new record aren't take in account. A second solution is to use do preselect each table... : get-next... end. It's more...
  10. S

    Image And trigger

    Hi, I've already seen that behaviour. My workaround is: *** define your widget in the main block with sensitive, select and visible atributes set to false *** DEFINE VARIABLE wImagenHnld AS WIDGET-HANDLE. CREATE IMAGE wImagenHnld ASSIGN NAME = "IMAGE-" + STRING(wImagenHnld) FRAME =...
  11. S

    SQL Explorer Error : "Exceeding permissible number of connections"

    HI, check the -Ma -Mn -Mi server's parameters. Regards. Stéphane.
  12. S

    Virtual Server

    Hi, i don't know for OE10 but it works fine with 9.1D09. Theoretically, softwares can't be aware that they're running under a "virtual" server so i think that it's the same for OE10. Stéphane.
  13. S

    sql views in progress database

    Hi, of course you can create a view using create view...as select... using Sql-Explorer or any other tool you'd like. Tables'CRC aren't changed because views are just mix/part of different tables. Stéphane.
  14. S

    treeview.ocx

    Hi, you have to "fill" your list. Open the ocx property editor of the imagelist control and add image in the "custom" property. Works fine after. Feel free to ask me for details if it doesn't work. Stéphane.
  15. S

    Excel column format problem

    Hi, you can also use "sylk" formart. Create a .slk file like this ID;PNP C;Y1;X1;K"0001" E and open it with excel. In this example the number 0001 is consider as "text" for excel but perhaps there are other SYLK command you can use to perform a "real" formatting. Regards. Stéphane.
  16. S

    How to create table through code

    Hi, you can prepare a .df file using the data adminstration tool and use RUN prodict\load_df.r ("name of the def file") to change the schema of the destination db. Regards. Stéphane.
  17. S

    Help using TREEVIEW and IMAGELIST

    Hi, http://www.v9stuff.com/ look for the walvis db viewer, good code and examples for what you need. Regards. Stéphane.
  18. S

    Error - Could not find the entrypoint ..(3260)

    Hi, did you try to "register" your dll ? If not try to execute regsvr32 <dll path>\<dll name> from the command line. Stéphane.
  19. S

    mailto: command

    Hi, Try {windows.i} def var lRet as log no-undo. RUN ShellExecute{&A} IN hpApi (0, "open", "Test Mel", "", "", 1, OUTPUT lRet). Go to the...
  20. S

    Need a solution and I am clueless

    Oooops too late, congratulations Dave you're the winner. Same solution but faster writing. Regards. Stéphane.
Top