Search results

  1. S

    SmartFrame in a SmartFolder...

    Thanks for your hints. I can put the SmartFrame in the SmartFolder. But after that, I cannot select it or get a valid handle from it. I show you how I do it: 1. I take a look at the Links of the Frames that already exists: 2. I create a new tab and select it in the Procedure settings. Thats...
  2. S

    SmartFrame in a SmartFolder...

    Hi, in a Main-Program I have a SmartFolder. In this SmartFolder there are 4 SmartFrames. Now I want to add a fifth SmartFrame. So I go in the "Instance Properties" of the SmartFolder and create a new tab. Then I select "SmartObject" from the Object Palette and assign the filename of the new...
  3. S

    What means ":U" at the end of format assignments?

    Thanks. What can the Translation Manager change, if I omit the ":u"?
  4. S

    What means ":U" at the end of format assignments?

    I often find the ":U" in Format assignments but cannot find anything about it in the documentation. For example: DEFINE VARIABLE iKontonr AS INTEGER FORMAT "9999999":U INITIAL 0 LABEL "Kontonummer" VIEW-AS FILL-IN SIZE 15 BY 1 NO-UNDO. Can anybody give me a hint?
  5. S

    Image Resolution

    in progress...
  6. S

    Image Resolution

    Where do you want to change it? In a Report or in a .w-file? Do you want to change the image itself or do you want to change the display in a source-file?
  7. S

    No .wrx file created when compiling

    When we compile a Source-File with a ocx-object in it, we always get a new .wrx-file. (9.1d Win XP)
  8. S

    Same .df-file, but different CRC.

    Thanks. Our Problem have had another cause: In the .df-file there was a integer-field with decimals(!?): ADD FIELD "number" OF "Tabelle1" AS integer FORMAT "9999999" INITIAL "0" LABEL "Nummer" POSITION 4 SQL-WIDTH 17 DECIMALS 4 ORDER 30 We have import this .df-file. Later we...
  9. S

    Same .df-file, but different CRC.

    Hi, I have a problem concerning the CRC on a table. I generate a .df-file which I import in two databases, but after the import they have different CRC-values. I import the .df-files with the tool "sy-schema.w". The fields in this tables are absolute equal but the .r-files works only for the...
  10. S

    Procedure?

    Try PROCEDURE HelloWorld: END. to create a working procedure. Concerning the Insert-Statement and the handling with records you can look in the documentations.
  11. S

    Access a Record two times in a for-each-statement

    Hi, I have the following for-each-statement: FOR EACH Table WHERE Table.Firma = 1 AND Table.status < 9: ... Table.status = 1. /* Table.status was: 0 */ ... END. Under special circumstance I set the Table.status from 0 to 1 in this loop. When I do so, the same...
  12. S

    ASYNCHRONOUS in the AppServer

    Maybe you need a "in - term" to say where you want the EVENT-PROCEDURE to execute: RUN someproc.p ON SyncSrv ASYNCHRONOUS SET async_hndl EVENT-PROCEDURE "p_asch_finish" in Handle-Name NO-ERROR.
  13. S

    About report in progress

    Hi, BTW: are there external report-builders which have native-driver-support to progress-db`s or are they exclusively connecting by ODBC? I mean connecting by ODBC will be very slow.
  14. S

    Total number of pages in report builder

    Thanks for your reply. I think I will try to run the report in background (or hidden) and anyhow get the total number of pages back to give it to a second report-call. I can`t use another document type because we have a lot of reports allready exisiting. My chief won`t feel happy about, if I...
  15. S

    Total number of pages in report builder

    Hi, is there a way to print the total number of pages on every site in a report? With PAGE-NUMBER() I can print the current page number. But I miss a function to print the total number of pages on every page. Thanks a lot for every answer. Greets Storzi
  16. S

    awful window-appearance

    Thank you very much.
  17. S

    awful window-appearance

    Thanks. But why should I set session:immediate-display to false after initialization completes?
  18. S

    awful window-appearance

    Hi, when I have to display a window (.w - file) and build several work-tables / temp-tables or big Combo-Boxes during program-initialisation, this can take a few seconds and meanwhile the window looks awful. That is to say miscellaneous scopes are complete white till the...
  19. S

    How to use DLL-Events???

    No problem. But edoc:ENABLE-EVENTS("port"). PROCEDURE port.OnEndDocPort: message "Event OnEndDocPort". END. doesn`t work.
Back
Top