Search results

  1. M

    Source code from .r

    Decompiler link This is a link for a V6 deCompiler, hope this helps. As mentioned be aware that decompiling WILL NOT generate EXACT src, things like var names ... It is just a guide http://www.maizels.nu/progress/decomp.html There is also a link to a V7 deCompiler.
  2. M

    Source code from .r

    RE Jurjen Dijkstra ( the swedish chef ) name was brought up or what win api's have to do with progress decompilers ? His site were just a refference for Progress related resource.
  3. M

    Source code from .r

    Greetings, You mean a deCompiler. For which version Progress?? There ARE decompilers available, though not for the newer releases (as yet). To point you in the right direction make a head for Jurgens site regardinging Win API. Can not think of the URL at this mo
  4. M

    Retrieve records in the order in which they were added to the table.

    Identifier RE the identifiers are like "ca190", "so120", > So you DO have unique identifiers that CAN be used - no need for rebuild. If the identifier is a consistent format you can (fiddle) that. With your example, are the numbers sequential? IE ca190, ca191, ca192 ..ca197 (fingers...
  5. M

    Retrieve records in the order in which they were added to the table.

    ??? RE: The client has a customised table >> DOHH well yes that much is obvious, and a given. There is not a default table format. RE can't write a create trigger >> You are using a database, therefore you do not require a trigger. With efficient database design, there should be a row...
  6. M

    Retrieve records in the order in which they were added to the table.

    ?? problem ?? Greetings, I do not understand your problem. If it is just the order records were added that is where your ProdNbr (or applicable) field comes in. You just need an integer value to increment on a new row (record added). This is where the use of sequences can come in. When...
  7. M

    Settle an argument for me

    Basically you have this client, trying to pursue a client - though do not know about db design. Wishing to modify the sports db and UI that is freely given. Sorry to disappoint though the Sports entity will take a lot of modifying. The db changes are only slight, then with how PSC works you...
  8. M

    Searching for Progress .p files with Windows XP

    Brown stuff Greetings, RE: Are there any solutions for this? Bin the brown stuff, that is also known as Microsoft (very brown) Windows (even browner). When Bill Stole the principle ideas for Windows from Xerox, and labeled it Micro$oft he flushed the product down the toilet. Get rid of...
  9. M

    How to change label position in forms

    The attribute you require to set here is the column-label. Appropriate syntax would be similar to; ASSIGN objName:COLUMN-LABEL = "STRING LABEL HERE" .
  10. M

    SmartBrowser: FetchOnReposToEnd

    Working??? Greetings, Is your code actually working??? Producing the required objective? If it is, dont forget you can always suppress errors in PSC.
  11. M

    BLOB / CLOB data type

    funny LOB ; Lot Of Binary CLOB; Corr Lot Of Binary I appreciate now the terms. How LOB and CLOB, hold file details (the binary breakDown of the file. 10011s ... How Word etc would hold the data)
  12. M

    BLOB / CLOB data type

    Greetings, So a BLOB and CLOB datatype, store image XML details. To do what (objective). Isnt this possible with CHAR datatypes?
  13. M

    dumping progress 6.2 database

    ??????? One question, why are you dumping Progress??? Progress RDBMS is arguably the most efficent RDBMS available. M$ Access ha,ha,thud (laughing my head off). Oracle better attempt, shame about the 4GL, or lack of it!!
  14. M

    SmartBrowser: FetchOnReposToEnd

    Not dealing with the exact instance error you are claimning though standard procedure should be to; 1 Check your Smart Links (data src - query) Does the data src provide data to other objects, if so are their any errors? Do not try and solve each instance error, make sure the basics - the...
  15. M

    Handle problems

    Greetings, You failed to identify the Progress version, whether or not using Smart Objects & the ADM,ADM(1) or ADM 2. In the Smart Viewerbehind the triggers (buttons,radio,combo) PUBLISH an event, eg PUBLISH 'newQ'. In the Query object SUBSCRIBE to 'newQ'. For the procedure newQ that you will...
  16. M

    Dynamically get/set any attribute of any widget

    I can appreciate that you are not a beginner. You should realise then it is all about iteration. Once you know how to set attributes, the same basis then applies for doing this dynamically(on-the-fly). That is where the skills is, programming. Ways to achieve your objective. Like M$ and...
  17. M

    Dynamically get/set any attribute of any widget

    GUI Progress / Progress OpenEdge This is example syntax for assigning properties/attributes to Widgets. /* set */ DO WITH FRAME {&FRAME-NAME} handle:Attribute / handle:Property = VALUE . /* dependent upon attribute setting eg YES/NO, 'CharValue', INTEGER */ END. /* frame */ /* get -...
  18. M

    use of FIND FIRST

    Find??? Greetings, Just a thought here. FIND is old method / behaviour. I can appreciate that in some instences it may be the appropriate method. Though I have been within the PSC community now for a while (approx 10 years) and concluded this. The query method is now the...
  19. M

    Insert NULL value in Integer field through Progress 4GL

    Null Greetings, I am not too sure using the SQL platform, though basic Progress syntax may be applicable here. To null an interger var use '?' (a question mark) - without the quotes, I just used the quotes to show what were required. Example syntax would be the equivelant of, (PSC 4GL here)...
  20. M

    How to write CASE-Statement in Progress-4GL?

    Syntax As previousley iterated. The CASE command can not be variable. Therefor your criteria HAS to be constant. CASE iVarName: WHEN 1 AND <= 50 THEN DO: /* iVarName< 50 */ END. WHEN 51 AND <= 99 THEN DO: /* iVarName< 100...
Back
Top