Recent content by StoneKeeper

  1. S

    create incremental .df file produces updates for char fields that want set decimals 0

    Re: create incremental .df file produces updates for char fields that want set decima Tom, i am doomed since ages ;-) But so far, it works for us in this way. As rzr sad, it is important to manage the requests during developement. btw: i found and applied one solution for the original...
  2. S

    create incremental .df file produces updates for char fields that want set decimals 0

    Re: create incremental .df file produces updates for char fields that want set decima okay, of course you are right. We will start to manage this in a better way. Thank you for your support and knowledge. regards
  3. S

    create incremental .df file produces updates for char fields that want set decimals 0

    Re: create incremental .df file produces updates for char fields that want set decima You are right. Currently we have - a master production db. After definition of data structure we generate db changes in this master db. Between this db and all other production db's we generate .df files...
  4. S

    create incremental .df file produces updates for char fields that want set decimals 0

    Re: create incremental .df file produces updates for char fields that want set decima Thank you for this tip. That works of course, but is very time consuming - we have to maintain about 10 production db's. Therefore, i am looking for a faster solution. And yes, it matters because every...
  5. S

    create incremental .df file produces updates for char fields that want set decimals 0

    Re: create incremental .df file produces updates for char fields that want set decima Thank you for this suggestion, but this is not possible. In the meantime i tried to code a small progress script, that based on tables _file and _field creates a incremental .df file with update decimals...
  6. S

    create incremental .df file produces updates for char fields that want set decimals 0

    hi there, here, i have two production db's. They should have same structure (both are progress 10.1C). After a differential i got a lot of this: e.g. UPDATE FIELD "email" OF adresse DECIMALS 0 .. for many character fields. After researching i found, that in _field table somethimes...
  7. S

    openoffice

    hi, this code example works for openedge 10.1c - opens a calc sheet and writes some text into a cell. I do not know if it will work with 9.1d. Here i am using OOo 3.2. Regards DO: DEFINE VARIABLE oService AS COM-HANDLE no-undo. DEFINE VARIABLE oDesktop AS COM-HANDLE NO-UNDO. DEFINE...
  8. S

    Windows batch file issues

    i had a similar problem a view years ago (lotus notes script). I remember, that if you start the batch as a service you are not allowed to use maped devices e.g. a drive like "net use x: \\...dadada". If you use such mapped drives it will not work - at least in the past ;) regards horst
  9. S

    slow screen output -> WINNT40, SP6a,Explorer 6.0

    mxproxy ssl hi graham, no, i do not use ms proxy with mod ssl . I had also contact with progress support and the folks there thought, that it could be a problem with authentication (128 bit encryption) - but i use a rather old progress version and also the os of the workstation is not...
  10. S

    Progress 8.2 export

    export of data hi, you have a lot of possibilities to export data - e.g. use the following code in the procedure editor: /* define output file */ output to value("c:\temp\filename.csv"). /* export the headline - one for each column - if you want */ export "column-desc1"...
  11. S

    slow screen output -> WINNT40, SP6a,Explorer 6.0

    frustrating... hi, after a lot of work and more frustrating ... i have installed w2k and the problem was solved.... nevertheless, thanks to you, dan. stonekeeper:mad:
  12. S

    slow screen output -> WINNT40, SP6a,Explorer 6.0

    before i installed MS-Explorer 5.5 or 6.0 the output of inputfields was very fast. after the installation i almost can count every single field until it will appear on the screen. The Taskmanager shows almost 100% cpu... i use progress 8.3a. does anybody have an idea ? greetings...
  13. S

    Create Staroffice Files

    Answer for interact with OpenOffice hi, i got the answer in another forum and the solution works fine with progress 9.1D. It works not with V8.3. Here is a simple code example: DO: DEFINE VARIABLE oService AS COM-HANDLE no-undo. DEFINE VARIABLE oDesktop AS COM-HANDLE NO-UNDO...
  14. S

    Create Staroffice Files

    hi there, i want to create starOffice 6.0 filex (especially calc, writer) with a progress application. i am using 8.3a on winnt2000. Can anybody give me an example to do this ? Maybe it is even as simple as the usage of COM Objects for ms excel and word ? thanks in advance for your help...
  15. S

    problem with assign

    strange problem... hi henry, thank you for your advice. i have tried a lot of thins in the meantime, also the error-status:error option. In fact id do not know what is going wrong. Now i have tried to split up the code in an additional internal procedure - and it works fine. the bad...
Top