Search results

  1. B

    Please help with row colouring in dynamic browse

    Hello All, I have a problem with the colouring of certain rows in a dynamic browse. I’ll show what I have got: /*********************** PROCEDURE to build the browse**********************/ CREATE BUFFER table-name FOR TABLE "tt_productie". CREATE QUERY dyn-query. CREATE...
  2. B

    How to set the bgcolor of a browse row in a dynamic browse

    Can anybody help with this one? thanks, Elise
  3. B

    How to set the bgcolor of a browse row in a dynamic browse

    First of all thanks for the reaction! how to just change to color i found out myself too.. I tried something like the following.. but it doesn't work. code: col-handle = dyn-browse-prod:GET-BROWSE-COLUMN(1). fld-handle = col-handle:BUFFER-FIELD. ASSIGN v_keynr = fld-handle:BUFFER-VALUE. IF...
  4. B

    How to set the bgcolor of a browse row in a dynamic browse

    What i have: I created a dynamic browse with as data-source a temp-table. code: CREATE BUFFER table-name FOR TABLE "tt_productie". CREATE QUERY dyn-query. dyn-query:SET-BUFFERS(table-name). CREATE BROWSE dyn-browse-prod ASSIGN WIDTH = 71 HEIGHT...
  5. B

    How to update data in dynamic browse.

    héhé.. not a bad idea..:-) thanks a lot for the help! kind regards, Elise
  6. B

    Window and browser not displaying correctly

    I can not simulate your problem.. but maybe you can try putting the two browsers in different frames? I don't really understand the temp-table problem.. can you explain any better? (maybe with some code) regards, Elise
  7. B

    Numerical Field Formatting

    great.. Hope it solves your problem.. if you have some tome accidentally.. maybe you could take a look at my thread in this forum? thanks a lot in advance best regards, Elise
  8. B

    Numerical Field Formatting

    Hi, I tried this myself too. I cannot define a format like you did for a number. But i got the same error with the NZD when i tried to add some leading string. I added a print screen with the error message to this reply. The message says the letter 'Z' is not allowed in a leading string .. like...
  9. B

    Frame scroll

    Hi, The 4GL does not provide direct control over which scrollbars are visible, however this can be achieved indirectly by using the appropriate Windows API as demonstrated by the following code: /* Scrollbars.p Shows independent control horizontal and vertical scrollbars in a frame using...
  10. B

    How to update data in dynamic browse.

    Hi, I created a dynamic browse, with as data-source a temp-table but i don't know how to write the changes made to fields in this updatable browser to the temp-table. code in the main-block: CREATE BUFFER table-name FOR TABLE "tt_productie". CREATE QUERY dyn-query. /* set the query and...
  11. B

    Button doesn't show BGColor or FGColor.

    thanks for the reply. i'll just make an transparant image for now.. this thing i'm making is to specific to use a standard tool but maybe i'll start using a java interface after i figured out how that works along with progress.
  12. B

    Button doesn't show BGColor or FGColor.

    Hi, I'm making as sort of calendar to make a planning. In attach you can see a screenshot. I want, that when too many people are on holiday on a certain day that day will be red. I tried to set the BGColor of the button (a day is represented by a button) but it doesn't work. I also tried to set...
Back
Top