Search results

  1. D

    Field "List"?

    Within the Progress language can we ask for the "field list" similar to how you might ask Mysql for a "describe database.tablename" of a database? Thanks
  2. D

    Check for string value "{" creating error....

    Progress V.91E - Windows XP sp2 I'm trying to check for the existence of the character "{" in a string. But when I do: IF SUBSTRING(thestring,1,1) EQ "{" THEN ..... I get an unmatched curly braces error. How do I escape the {? Or, can something else be done? Thanks!
  3. D

    Progress 9 to 10 conversion???

    We are getting ready to go from version 9 to Progress version 10. Does anyone have any ideas as to what problems we may run into? Thanks
  4. D

    F3 Function Key????

    Windows XP SP2, Progress Version 9.1E We would like to be able to use the F3 function key in our programs. However, we have found that the F3 key is used by Progress for Menu calls. Is there a way to remap this key?
  5. D

    Image Upload and Display?

    [Windows XP - Progress V91E] We would like for a user to be able to upload images in Progress and then in the future, display those images in Progress. Preferably, the images would be "linked" to a network location and not actually stored in the Progress db. But either way would be ok. Any...
  6. D

    Switch frames, keep frame"state".....

    [Windows XP - Progress 91E] Is there a way to switch between two different frames/programs and preserve the "state" of each so when the user returns to the previous frame, everything is as it was before leaving? In the example below, I would want the input to NOT copy over to the main...
  7. D

    Map ESC key to a button?

    Progress Version 9.1E - Windows XP I am using several "BACK" buttons to take the user from a popup browse, back to the original browse. This works fine. However, I would like to "map" the ESC key to the BACK button so the KEY takes the user back also. Help please.
  8. D

    Exit Button not working!

    [Progress Version 9.1E - Windows XP] In the past I've created buttons to exit a procedure and return to a main menu. However, when using the code below, the exit button does NOT work!?!?! Help please:-) DEFINE TEMP-TABLE tier-list NO-UNDO FIELD tier-code AS CHAR FIELD tier-name AS...
  9. D

    FRAME field updates and buttons?

    (Progress Version 9.1E/Windows XP) I have an initial frame containing the following fields: After the user enters values into the fields, they can click "Add". Upon clicking "Add", the following frame is displayed: The user then decides if they want to "Cancel" the addition or "Submit"...
  10. D

    Activate Button in second frame?

    How do I make a button "Active" in a second frame? (9.1E, Windows XP) I have an initial frame1 that contains an "ADD" button. Clicking on the ADD button displays a second frame (frame2) that contains a "Cancel" and "Submit" button. However, the ON CHOOSE OF cancel IN FRAME frame2 DO: does...
  11. D

    Simple Multiple Frames?

    I am displaying records from a table using a browse. When a user selects a browse row and clicks the "Find" button, another browse is displayed showing records from a related table. The user can then click a "Back" button and return to the original browse. This works, but only ONCE! After...
Top