Search results

  1. 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
  2. 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
  3. 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...
  4. 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...
  5. 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...
  6. 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?
  7. 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.
  8. 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...
  9. S

    Selected row in a browse

    It`s me again. :blush: How can I get the rowid or something else for the selected row in a (dynamic) browse? Thanks. Storzum
  10. S

    How to create a context-menu for a dynamic browse?

    Hi. I need to create a context-menu (activated by the right mouse-button) for a dynamic browse. Where can I find something in the documentation, that can help me? Thanks. Storzum
  11. S

    _printrb.p and it`s RBFILTER

    Hello again. :blush: Is there a way to feed the RBFILTER-parameter with a "INNER-JOIN-Statement"? When I use a query on only 1 table it works fine. But if I use INNER-JOIN to select records depending to a second table, I get an error when I start the _printrb.p - Program. Is there some...
  12. S

    Filling an Excel-Sheet with an dynamic browse

    Hello, it`s me again. :-) I want to put the data from a dynamic browse into an Excel-Sheet. I work under Progress 91.d My code (the query was opened and prepared before...): DEFINE VARIABLE temp AS HANDLE NO-UNDO. CREATE "Excel.Application" chExcelApplication. chExcelApplication:Visible...
  13. S

    Column-Width in a dynamic Browse?

    Hi. Im really new in Progress and have the following question: I have make a dynamic browse and now wants to select which db-fields are visible in this browse: mybrowse:ADD-LIKE-COLUMN("table.field1") NO-ERROR. mybrowse:ADD-LIKE-COLUMN("table.field2") NO-ERROR. But how can I size the width for...
Top