Recent content by gummbeey

  1. G

    Getting Focus on Radio-Set Element in CHAR (NOT GUI)

    In Char (NOT GUI), how do you get the focus specfically on a radio-set element? I need to code the following: 1) If focus is on apple, and user presses "up", focus should go up to v_pet. 2) If focus is on cherry, and user presses "down", focus should go down to v_color. 3) Otherwise, focus...
  2. G

    How to Inherit stty rows/columns values during Progress startup?

    SUWWWEEEEETT!!! IT WORKED!!! Thanks a bunch!!
  3. G

    How to Inherit stty rows/columns values during Progress startup?

    I got this when I tried it.. Unable to use your terminal. Check your PROTERMCAP file. (443) ** Could not find terminal type vt100-132 in file /tmp/protermcap2.dg. (146) So I added the vt100-132 in the protermcap in the list like this.. BEFORE V1|vt100|vt100-80|vt100_series|DEC VT-100...
  4. G

    How to Inherit stty rows/columns values during Progress startup?

    vt100 I should also point out that I have to fire up _progres twice. The first time around, the screen is all messed up, not aligned and all that. So I quit out, and go back in and it comes out 48 x 80 neatly.
  5. G

    How to Inherit stty rows/columns values during Progress startup?

    I'm still not able to do 132 column, but I was able to do it with 48 rows. I tried all the suggestions here but no luck. Heres what I did. 1) I pointed my PROTERMCAP file in my .profile like this. PROTERMCAP=/tmp/protermcap2.dg 2) I modified protermcap2.dg many ways. I tried forcing 48...
  6. G

    How to Inherit stty rows/columns values during Progress startup?

    How do I get Progress to inherit the values in the stty rows and columns, so I would get 48 rows and 132 columns for example. When I fire up _progres in Unix, the Editor fills only half of the screen (24 x 80). Thanks, gummbeey Progress 9.1c
  7. G

    How to capture Frame Events w/o Enabled Widgets?

    How do I capture events of a frame that contains no enabled widgets? My messagebox pops up in GUI only after I click the frame with my mouse. But this code is really for Character version, so no mouse is involved. I'm guessing I need to somehow get the focus on the frame but I tried many...
  8. G

    "Block Select Mode" in Windows Progress Editor

    YES!! THATS IT!! In textpad, its called a block select mode.
  9. G

    "Block Select Mode" in Windows Progress Editor

    I thought I read somewhere here that Progress Editor (Windows) can select text in block mode, kinda like Textpad's Block Select Mode. I cant remember how to do it. Can someone remind me? Thanks, gummbeey
  10. G

    BUFFER handle VS TEMP-TABLE handle

    Thanks for the replies. I did some quick programs and this is what I got. The TEMP-TABLE ttCust:HANDLE is a pointer to the actual temp-table, which allows me to dynamically create/modify a temp-table. Whereas the BUFFER ttCust:HANDLE is pointer to a what I call a "record holder" which allows...
  11. G

    BUFFER handle VS TEMP-TABLE handle

    Whats the difference between the two statements below DEF TEMP-TABLE ttCust... bhttCust1 = TEMP-TABLE ttCust:HANDLE. bhttCust2 = BUFFER ttCust:HANDLE. I know they have different properties/methods because it lists them on the Help file under "Temp-table Object Handle" and "Buffer Object...
  12. G

    Good way to delete handles on CTRL-C?

    Is this a good way to make sure the persistent program handles are deleted when the user presses CTRL-C? on "F4" anywhere do: run deleteHandles. end. main: do: do on stop undo, leave: display "main". /* run program set persistent vHandle. */ wait-for "F4" of this-procedure. end. run...
  13. G

    Moving Child Frame Dynamically?

    How do I change the ROW/COLUMN attribute of a child frame? Every time I change the ROW/COLUMN, I get this message "Unable to set ROW/COLUMN. Frame f-Child does not fit in FIELD-GROUP widget. Heres a cut-n-paste example: def button b-1. def button b-2. define frame f-main with width 30 10...
  14. G

    Need help designing tables for users/security/module access

    (Please see attachments before reading) Ok, so heres a typical application.. 1) The application has multi-level modules and multi-level users. 2) A user can have access across different modules. Ex: JOE ORANGE has access to 3 and 7. 3) A user has access to all modules (descendants) below...
Top