Search results

  1. S

    Commit Transaction

    What does the "for order" in mean! Have it the same effect, when I only use "do transaction:"?
  2. S

    Set the size of the section-editor

    Hi, is there a way to set the size of the section-editor automatically during the start of the AppBuilder? Maye a startup-parameter. It`s annoying to set the size of the editor manually with the mouse-cursor every time I start the AppBuilder. Greets Storzum
  3. S

    Where can I find abhack?

    Thanks a lot. I never scrolled down to the end, so I oversight the Attachments... :-) Greets Storzum
  4. S

    how to define and use multi dimensional array (extent)

    Hi, This is a 1-dimensional array. Multi dimensional arrays is not a feature from progress (IMHO).
  5. S

    Where can I find abhack?

    Hello, I have much read about abhack, but can`t find it anywhere. Where can I download this tool? Greets Storzum
  6. S

    Trouble with the "END-ERROR" - Trigger...

    Hello, I have a program (A) which calls a Dialog (B) using a run-statement. This Dialog (B) calls another Dialog (C) also with a run-statement. In Dialog (C) I create a record: DO WITH FRAME Frame-A: CREATE Table1. ASSIGN Table1.Value1 = Fill-In-1...
  7. S

    Error 1422 - Index cannot delete...

    No. I searched the record before the Index was fixed. My mistake.
  8. S

    file management: files without extension

    The files shouldn`t lost their extension when they mailed as attachment. How do you mail them?
  9. S

    Error 1422 - Index cannot delete...

    Hello, on occasion it happens, that some of our customers get the error 1422 (SYSTEM ERROR: Index in for recid could not be deleted.). This happens probably when they delete a record. When I search the recid shown in the error message with: find Tabelle1 where recid(Tabelle1) = 123123123 I...
  10. S

    Sending a hex-value to the registry?

    Hello again, I want to write to the Registry and do it like this: LOAD regpath BASE-KEY "HKEY_CURRENT_USER". USE regpath. PUT-KEY-VALUE SECTION "Action" KEY "Keyname" VALUE cValue. UNLOAD regpath. The key allready exists and I only want to change the value. The key have the...
  11. S

    Start-Search - Trigger in a browse

    OK. I think I have understand it.
  12. S

    Start-Search - Trigger in a browse

    OK. I don`t understand it, but it works. I have put the trigger phrase in the definitions-section: on start-search anywhere...
  13. S

    Display-Format in a Browse

    FIELD kontonr AS INT FORMAT "9999999" also works.
  14. S

    Start-Search - Trigger in a browse

    OMG. Ihave coded some other triggers in my browse and they are not working too. Here`s the code. Any idea? CREATE BROWSE mybrowse IN WIDGET-POOL "dynBuff" ASSIGN FRAME = FRAME fmain:HANDLE COLUMN = 2 ROW = 3.38...
  15. S

    Multiple Selection in a dynamic browse

    Ahhhhhhh. Thats too much for me. Is there any workaround, so that I can make multiple selections in my dynamic browse?
  16. S

    Start-Search - Trigger in a browse

    I think I have to "enable" a column. But how can I do this with a dynamic browse?
  17. S

    Start-Search - Trigger in a browse

    I want to use the Start-Search - Trigger in a browse and have set the attribute ALLOW-COLUMN-SEARCHING to true. But I am not able to select the "title-row" in the browse.
  18. S

    Display-Format in a Browse

    Hi. I want to fill a dynamic browse with the data from a temp-table. I define the temptable: /* Temp-table for group */ DEFINE TEMP-TABLE tt-tmpmahn NO-UNDO FIELD kontonr LIKE table.kontonr FIELD uname LIKE table.uname. I create the temp-table: /* create temp-table */ FOR EACH...
  19. S

    How to find out the table names

    Open a procedure window, connect to the db and type this: FOR EACH ***._file: display _file._file-name. END. *** is the name of the db
  20. S

    Selected row in a browse

    I take the "underlying" buffer:rowid. This seems to work?
Top