Search results

  1. B

    Using subquery in select statement

    thans for this one. i fixed my problem using multiple queries but i'll try this for the next time grtz, Elise
  2. B

    Using subquery in select statement

    yes, i know ... but since i have to make a query in crystal reports accessing a progress database, i don't have a choice... grtz, Elise
  3. B

    Using subquery in select statement

    I'm also running into this same problem. Does anybody has a suggestion how to solve this? greetz, Elise
  4. B

    Autocompletion problem in browse view as combo-box

    hello, I have a problem with the auto-completion which is not working properly in a browse field viewed as combo-box. I am working with version 10.1C field definition looks like this: (in display trigger of browse) tt_klacht.cklachtstatus FORMAT "x(16)":U VIEW-AS COMBO-BOX...
  5. B

    Static browser - view-as Combox property.

    code example (this works just fine in 10.1c with me) - only problem is that i can not make the auto-completion work.. seems to be an unfixed bug.. if you havce suggestions about that... :) ASSIGN hcolumn = tt_klacht.cklachtstatus:HANDLE IN BROWSE brw_klacht...
  6. B

    Question about Profiler

    Hello, I'm dealing with serious performance issues at the customer site. I heard about the progress profiler and tried this. The files are produced but i'm having trouwbled with the profiler control tool (can be found on psdn). This program reads the output files and interprets them. First of...
  7. B

    How to add xml stylesheet to xml by using the Sax-writer?

    Thanks! This is doing the job!
  8. B

    How to add xml stylesheet to xml by using the Sax-writer?

    I already tried this .. but i always get an error in this case: STRICT error:write-processing-instruction method passed invalid XML name 'XML stylesheet'. I tried several combinations before posting this but i can't get it working.
  9. B

    How to add xml stylesheet to xml by using the Sax-writer?

    hello, I created a XML file with the saxwriter. I've also made a XSL file. Now i want to add this at the beginning of my xml file. <?xml-stylesheet type="text/xsl" href="xslExample_fulltable.xsl"?> Does anybody knows how i can fix this? thanks a lot! best regards, Elise Daans
  10. B

    Problem with recursive procedure (buffer problem)

    It worked! Thanks a lot!!
  11. B

    Problem with recursive procedure (buffer problem)

    numparent contains the numheader of the parent record (to link them ... to know which is the parent of the child. When numparent = 0, this is the Root) Problem is .. the original query (parent level) is gone when i use the 'for each' again for a deeper level (child level).
  12. B

    Problem with recursive procedure (buffer problem)

    Dear All, I have written the procedure below. What it should do: i goes over a table with a for each, containing parent lines, as well as, child lines. I know that this doesn't work due to a problem with the buffer but i don't know how to solve this without having to write a seperate procedure...
  13. B

    Java error in Broker log. Can Anyone help?

    Dear All, From time to time we have this error in the broker log: [08/09/09@09:19:29.817+0200] P-005016 T-C-0109 1 UB ---------- Cannot write response message. (8420) [08/09/09@09:19:29.817+0200] P-005016 T-C-0109 1 UB ---------- java.net.SocketException: Connection reset by peer: socket write...
  14. B

    table buffer

    yeah i know when i can use table buffers. but when i learned progress in the beginning. I was told to always use a buffer of a table when doing something with that table. But i don't remember why it was. Thanks anyway! Elise
  15. B

    table buffer

    Can anybody tell me why it is important to use table buffers? I used to know the technical explanation but i don't remember. Thanks a lot! greetz, Elise
  16. B

    Problem with query/browse reposition to a row, that is not in the first viewport

    Refresh is ok when i only calculate other values in the same row (where i modified something). But some rows depend on eachother. When i modifie a value in one row, i need to change some other rows. In this case, refresh is not working (i lost the focus on my modified row). Thanks a lot for the...
  17. B

    Problem with query/browse reposition to a row, that is not in the first viewport

    Hi!, I have a dynmic browse filled up with a query. The filling of the browse is located in a procedure with an input paramter with the rownumber where i want to reposition to. When i update certain values in the browse, other values are calculated (also in other rows than the current). to show...
  18. B

    Format of decimal in browse

    i'm sorry .. but where do i put this code? My browse is dynamic browse. now i do this: ASSIGN hField = table-name:BUFFER-FIELD("productie") hField:FORMAT = ">9.99". .. in the procedure where i create my browse: CREATE BROWSE dyn-browse-pers ASSIGN WIDTH = 176.60...
  19. B

    Format of decimal in browse

    Hello, Can anybody give me tip about the following? I want to see the value of a decimal in a browse, but only when the value <> 0, otherwise i just want to browse cell to be empty. I thought to define a format for this field: format ">>.>>". (with two decimals) but this doesn't work. Strange...
  20. B

    Please help with row colouring in dynamic browse

    Ok i found the solution. instead of only make a larray of the column handles, i made also a list of the buffer field handles. in proc prodCol i now can read the buffer-value and it becomes something like this: ASSIGN v_i = 1. ASSIGN fld-handle = v_buflist[8]. MESSAGE...
Top