Recent content by Henri de Vos

  1. H

    User defined report

    Hi all, i'm using RoundTable 9.1C and I want to create a report with the following functionality (like the Release Report): - which tasks are closed and not in a release yet The problem is that I don't know which tables to use. So any help is appreciated. With regards, Henri
  2. H

    XML processing

    Problem solved... :D
  3. H

    XML processing

    Hi All, This is my problem: In a XML file there's a very long string. This represents a gif picture. Is there a way to create the gif-picture using something like this: OUTPUT TO 'something.gif' NO-MAP NO-CONVERT BINARY. PUT CONTROL v-gif_txt. OUTPUT CLOSE. Hope someone can help, Henri
  4. H

    How to make a screenhot an Print this out.

    Hi Make, do the folllowing for any selected window: press the Alt + Print Screen key on your keyboard. Start Paint and press the Ctrl+V key. Hope this helps.
  5. H

    for each question !

    for each month where .... no-lock: if month.field1 = empty or month.field2 = empty then next. do something with month. end. If you want to update fields you should replace no-lock with exclusive-lock.
  6. H

    Using the find command

    if you use find without first/next/prev/last progress check's if it can find a unique record. If progress finds another record you get error: there a more than one records in ...
  7. H

    Dynamic browse

    I've solved it by changing it to: ON ANY-PRINTABLE PERSISTENT RUN Any_Printable IN THIS PROCEDURE. Knowledge base 19096 shows an example without a persistent run, so i wonder what i'm doing wrong.
  8. H

    Dynamic browse

    Hi all, I have a created a dynamic browse in 9.1D and i want to add some triggers to it. I'm trying this: CREATE BROWSE browse-handle ASSIGN HIDDEN = TRUE FRAME = FRAME {&FRAME-NAME}:HANDLE QUERY = query-handle X...
  9. H

    Join Problem ?

    Hi Make, if you change it like this: for each mytable no-lock : create bujo. assign bujo.... (all fields except Belgnr). find first bestpos where ... no-lock no-error. if available bestpos then assign bujo.Belegnr = string(bestpos.bestnr). end. Now for every mytable a bujo...
  10. H

    Change Name of Window Title

    If you have define Startwindow as a character variable it should work otherwise you should use: {&window-name}: title = 'Startwindow'.
  11. H

    some calculation problems !

    Hi Make. maybe this can help you: for each temp-table-1 break by artikel_nr no-lock : if first-of(temp-table-1.artikel_nr) then do: create temp-table-2. assign temp-table-2.artikel_nr = temp-table-1.artikel_nr. end. assign temp-table-2.value =...
  12. H

    Buffer-copy

    Hi All, I have a dynamic temp table with lots of fields, a dynamic query with the field list option. If I want to fill the temp table I can use the buffer-copy statement and use the exception-list. But if I want to assign just three fields (art-code, art-oms from the first buffer and mrk-oms...
  13. H

    AppServer & Base location changing

    ...if you install Progress on both machines you can start & stop your databases on the NT server from the 2000 server. On the 2000 server add a server in the Explorer tool, select/enter the name of the NT server. Now you can administer your NT server. On 2000 select the 2000 server in the...
  14. H

    AppServer & Base location changing

    Hello again Kub, I don't think Progress allows a remote database setup. As you experienced the Explorer tool (Admin service) needs a server. You can add a remote server but on that server the Admin service must be running (= Progress installation). This also explaines error 8336...
  15. H

    Right Mouse Click on Selection List

    Hello, You want to change the default Windows behaviour. Writing different logic for the left and right mouse button won't change this behaviour. Maybe you can use some windows api to change this behaviour???
Top