Search results

  1. Serj HAMMER

    ANALYZE-SUSPEND syntax

    AppBuilder temp-db: is it accessable? I mean User-defined temp-table. It will work like RowObject, but has a different format. temp-db - is it internal AppBuilder temp-tables? And can you access it through AppBuilder's API or from inside ANALYZE-SUSPEND sections? Now I have detect that...
  2. Serj HAMMER

    ANALYZE-SUSPEND syntax

    It is only XFTR description Thank you, senior Lee. This is true that OpenEdge documentation contains one example with using ANALYZE-SUSPEND derective ("Creating extended Features"). But this section has not enough information as a whole. This section describe only XTRF conctruction...
  3. Serj HAMMER

    ANALYZE-SUSPEND syntax

    Does any body know what exactly syntax of the ANALYZE-SUSPEND / ANALYZE-RESUME blocks? I am trying to create new ADM Class (in ADM2) and whant to establish in this template defining temp-table w/o database connection. I understand that I must create section in template file with temp-table...
  4. Serj HAMMER

    browse question

    BROWSE not supported VIEW-AS Hello, Crittar! IMHO more, than one line, in BROWSE impossable, because browser don't support VIEW-AS phrase. And if You make single string too wide - it may be side-scrolled, but not multyline. Now I have 9.1d03 and may be in future PROGRESS release VIEW-AS...
  5. Serj HAMMER

    Menus - providing help

    Menu manualy? Yes, Bendaluz, manualy menu is a real way. But... I think, that it is not a good way to write menu manualy. Because PROGRESS already put some work to release menu. Instead of duplicate their work we can make our own work at this time. IMHO transfer some help from menu to paper...
  6. Serj HAMMER

    Menus - providing help

    HelpInfo on MENU-ITEM Buon giorno, signore Crittar. It is not very well, but I think that providing help on every menu-item in PROGRESS now phisicaly impossible. - At first MENU-ITEM has no events, except CHOICE. It also had VALUE-CHANGED, but it is for TOGGLE-BOX only and not can be use...
  7. Serj HAMMER

    Menus - providing help

    P.S. MENU-DROP I don't know, why this trigger fired twice. First time when choosing menu folder and the second time - when sub menu drawn.
  8. Serj HAMMER

    Menus - providing help

    MENU-DROP example Ok, example: <PRE> DEFINE SUB-MENU SubFolder MENU-ITEM SubItem1 LABEL "Ferrari-Marlboro" MENU-ITEM SubItem2 LABEL "West-McLaren" MENU-ITEM SubItem3 LABEL "MildSeven-Renault" MENU-ITEM SubItem4 LABEL "BensonAndHedges-Jordan" MENU-ITEM SubItem5 LABEL...
  9. Serj HAMMER

    Menus - providing help

    MENU-DROP event Guten morging, Crittar. Did You tried to use MENU-DROP event on "menu-folders"? It fired only once (when menu opened), but it is more, that nothing.
  10. Serj HAMMER

    LookupPrivilegeValue - how to declare?

    Help me please: how to declare <I>LookupPrivilegeValue</I> - external API function in Progress 4GL? Example: PROCEDURE LookupPrivilegeValue EXTERNAL "advapi32.dll": DEFINE INPUT PARAMETER lpSystemName AS CHAR NO-UNDO. DEFINE INPUT PARAMETER lpName AS CHAR NO-UNDO. DEFINE OUTPUT...
  11. Serj HAMMER

    Open Query & Close Query

    it is a change made by progress Hi, Jenifer. Yes, it is a progress change. It described at Language Reference book. See 4GL Reference -> OPEN QUERY Statement -> Notes. <TT> NOTES<BR> · If the query you reference in an OPEN QUERY statement is already open,<BR> then that query is closed...
  12. Serj HAMMER

    Need help for a query definition !

    small addition to first for-each. Hello, make. I have some words about first portion of Your code. You write: <TT> for each xartikel use-index Glas-Main no-lock where xartikel.glas = iprod_kombi_kz and substring(xartikel.artikel_nr,8,2,"Character")=...
  13. Serj HAMMER

    Last field behavior.

    try to do validation on "GO" Hello, Rob. I have one idea about You. In Your situation the best way is to move all validations to the trigger "ON GO OF FRAME f-frame". Because before wait-for terminated - trigger fired. Any field may be last, but trigger work well. Second advantage is...
  14. Serj HAMMER

    Iteration over some field-values

    select with repeat Hello, make. if You whant to use REPEAT then why You do not use repeat "as is"? REPEAT: &nbsp;&nbsp;FIND NEXT table. &nbsp;&nbsp;if HT < 1.3 OR HT > 1.5 THEN NEXT. &nbsp;&nbsp;... selection output ... END. P.S. And why You do not use FOR EACH or OPEN QUERY?
  15. Serj HAMMER

    Static temp-tables and create buffer statement

    SOME TIMES create buffer worked ok Hello greuceanu and everybody. No. If You would define a buffer variable for the temp-table inside an internal procedure, then it should work ok. But tell me please, why do not work CREATE BUFFER? if You see table at DEFINE statement then You must see it at...
  16. Serj HAMMER

    Locking

    Large transaction Variant 2: it is may be depend from Your transaction. When You make RELEASE spf? I think, that between RELEASE and END_OF_TRANSACTION table 'spf' stay in SHARE-LOCK. Because SHARE-LOCK is default for PROGRESS, because RELEASE not always unlock record.
  17. Serj HAMMER

    number of rows in browser v9.1c

    num-iterations=1 After You use REPOSITION functions to the last row of the QUERY, You have only one line at the 1st string of BROWSER widget. At this time NUM-ITERATIONS returns 1. I don't know what is possible in such situation. In my application I agree, that it is only one rows. Users press...
  18. Serj HAMMER

    Clearing Fill-in help message.

    Clear help-string using space. Hello, Keith! Try to do all, that say Christopher H. Morgan, but instead "" use " " (", space, "). In my applications only spaces success clear status line.
  19. Serj HAMMER

    browsing files & posting them!

    How to call pop-up Hello, truespin! I can tell You only half of answer. To will You pop up one of those file browse windows that would allow the user to select a certain file from their hard drive/disk You shold use <input name="file_upload" type="file" size=28> (for browser >=3.0 or...
  20. Serj HAMMER

    Using tables in different databases

    tables from different DB Yes, You can execute an Update Statement when the tables are in different databases. If the tables has equal names then You should use DB-Name prefix: UPDATE database1.table.field database2.table.field. Otherwise You may update it as, like it placed in one...
Back
Top