Search results

  1. S

    Disable control-c programmatically?

    I know I can disable control-c globally by putting trap "" 2 (not recommended) or stty intr '' in each user's .profile or /etc/profile. However, is there is way to disable control-c from working in one program? Using 10.1c CHUI. I tried "on ctrl-c anywhere return no-apply" in a program, but...
  2. S

    Interfacing Progress 10.0b GUI with Acrobat

    I would like to pass a file name (pdf file) and page number from Progress and have Acrobat Reader open automatically and reposition the pdf to that page number. Any help/tips will be appreciated. Thanks, Shannon
  3. S

    Calling a PPTP/VPN DUN Connection

    I have an application that uses Mabry Software's RAS/X ActiveX control to dial into a server via PPP, ftp data, and disconnect. I would like to be able to call a PPTP/VPN connection under XP's dial up networking from Progress. Are there any samples out there that will call a PPTP or Cisco VPN...
  4. S

    Running .w from a dialog box

    For an application main menu (w-main.w), I am using a dialog box with buttons. When the user clicks on a button, the following code fires: current-window:sensitive = no. run w-app1.w. current-window:sensitive = yes 99% of the time, when the called application is exited, the main menu...
  5. S

    Using frame/box with os-command (GUI)

    I would like to popup a box or frame that alerts the user that the system is busy when running either os-command silent value("program") or run value(v_upd_pgm). I have tried something like: display v_inbound with row 4 overlay centered 1 col three-d view-as dialog-box. However, most of...
  6. S

    Problem with prostrct create

    I can believe forgot that! Adding -blocksize 8192 fixed the problem. Thank you!
  7. S

    Problem with prostrct create

    I am trying to restore a database. If I type the following: "prostrct create wds4 /wdsfiles/dbbackup/xyz.st" I get: "The maximum Area Size has been reached for Area: Invitemd Area Please refer to the Progress Database Limit chapter in the Database Administration Guide and...
  8. S

    Pulling sar 5 values back into Progress

    Perfect. Thanks. Here is how I used it: input through value("sar 5") no-echo. repeat: import unformatted w-sar. end. input close...
  9. S

    Pulling sar 5 values back into Progress

    I want to run a Unix "sar 5" command from Progress and capture the values to be used in the Progress program. running sar 5 would return: # sar 5 SunOS brsprod 5.9 Generic_118558-06 sun4u 09/29/2005...
  10. S

    Adding new users to Progress db and Solaris 9

    I would like to give department heads the ability to add new users themselves - to the database and to a Solaris 9 OS. Is there a script out there that will prompt for a new user name and password and then do the work behind the screens? I.e., create user, home directory, .profile, .login...
  11. S

    Calling Outlook Express from Progress 9.1b GUI

    That is exactly what I was looking for. Thank you very much!
  12. S

    Calling Outlook Express from Progress 9.1b GUI

    I would like to give users the option of clicking on a button and the Progress procedure would "call" or open up a new OE message. Something like the "Send To --> Mail Receipient" works in XP or "mailto" in html. TIA.
  13. S

    Online Schema Changes

    Progress 10.0b I've heard you can now make schema changes using version 10 without having exclusive access to the database, but I cannot find any documentation on this. If possible, can I only add new tables, fields, and/or indexes without exclusive access? Also, we run a job scheduler. If...
Top