Search results

  1. D

    Auditing - Creating data for one table and not the other

    I'm testing out OE Auditing but have run into an issue. I've set up PSC-App-Tables for both tables in a test database. I imported all the standard policies, but disabled all but PSC-App and PSC-Security. I can create, update and delete one table and data correctly appears in the...
  2. D

    Question Opening a .tif file using MS Viewer

    Anybody know of a way to open a .tif file using MS Viewer (MSPVIEW.EXE)?
  3. D

    Using FieldInfo parameter of OpenText Excel Command - Keeping Leading Zeros

    OpenEdge 10.2b Windows XP Excel 2007 I have a csv file that I am importing into an Excel spreadsheet using the OpenText command. This spreadsheet has one column that can contain a either text (ABC11111X) or can have numbers with leading zeros (003847646). The OpenText command removes the...
  4. D

    Launching Internet Explorer

    OpenEdge 10.2B Windows XP Internet Explorer 8.0 I'm using the "standard" code to launch Internet Explorer... create "InternetExplorer.Application" objExplorer. objExplorer:visible = yes. objExplorer:Navigate(xsourceFileName). release object objExplorer. ...but I'm getting the...
  5. D

    Importing Multiple Data Types from File

    Progress 9.1 Windows XP I have a file that contains the following data: "A" "" "ZZZZZ" "*" "*" ? ? "01 2009" "01 2009" ? ? no yes 10/06/10 This is exactly how a line in the file appears, including the quotes. The question marks represent date values and no and yes represent logical values...
  6. D

    Frame Handles In Window

    I have a multi-page SmartWindow with unique SmartFrames on 5 pages. Is there any way I can programatically get the handles of each of those frames? Maybe walk the widget tree?
  7. D

    MSWord - First Column of a Table

    Anybody know of a VBA command that will go to the first column of a table in MS Word?
  8. D

    Asynchronous AppServer Call

    Progress 9.1C Windows XP HP-UX running Unix I am attempting to run a program using AppServer, asynchronously. Here's what my code looks like... * On a window, I have an "OK" button with the following code: /*** Run Report Program ***/ run clientProgram.p persistent (input value-1, input...
  9. D

    Adding fields to the DISPLAY psuedo trigger

    Progress 9.1D I am trying to dyamically add columns in a plain, static, "freeform" browser to the DISPLAY psuedo trigger. Anybody know how to do this?
  10. D

    Internet Explorer, Active X and Java

    I need to open an Internet Explorer session on the client side (Progress V9) and call the following URL: http://www.rateexplorer.com/RQNVOCC.HTML?jvmven=Sun+Microsystems+Inc.&jvmver=1.5.0_06&msjvmver=0 This web page contains Java. But when I call it with the following Active X code, the...
  11. D

    Insert Image onto Multple Sheets in Excel

    I have a Progress program that is generating an Excel document "on the fly". I am attempting to put the same image on all the sheets of an Excel document. I am able to successfully drop the image into the first sheet. However when I attempt to put the image on the second sheet (same...
  12. D

    Dyanmic Query with Static Temp Table

    Progress 9.1C Background: I have a static temp table that needs to be populated using a dymanic query. This temp table will be used to fill a freeform browser. DBTableA contains: lineNo (integer), seq (integer), createDate (date), description (char). DBTableB contains: lineNo (integer)...
  13. D

    Dynamic Sorting

    Here's my situation. I am creating a temp-table that will be holding data. I need to create a secondary "reference" temp-table that will hold the order which it is displayed. I need to create this reference temp-table based on a combination of TWO sorts entered by the user. Each sort has TEN...
  14. D

    MS Word - Set a range of cells in a table

    Anybody know how to set/select a range of cells in a table in Microsoft Word? I'm trying to select the second and third cells of the first column of my table so I can perform a "merge" on them.
  15. D

    Word - Headers & Footers

    I'm trying to put a footer on only page one of a Word document using Progress COM Objects. Anybody know how to do this?
  16. D

    "No Entry Point" When there IS ONE!

    Progress 9.1D Windows XP I have a SmartWindow, I'll call it WindowA, that has a SmartDataViewer with a few fill-in fields and buttons. The user enters information in WindowA, then presses a button, that calls another SmartWindow, WindowB. WindowB, contains a SmartDataViewer on page one and a...
  17. D

    Multiple SmartPanels in different SO

    Progress v9.1D Windows client - Unix DB I have a standard main Window that uses the standard update SmartPanel. In this window, I have multiple pages. On the first page is a run-of-the-mill SmartViewer with a "parent" SDO, like an "ORDER" table. The second page has a "child" SDO, like an...
  18. D

    Disabling Buttons on the Smart Panel

    Progress 9.1D Windows I've created a customized version of the standard Update Smart Panel (pupdsav.w). I have set up instance attributes that need to control whether or not the buttons are disabled. I was able to complish this in 9.1B. However, apparently, some code has changed in 9.1D...
  19. D

    New Class of Smart Panel - HELP!

    Progress V9.1D Windows I'm trying to create a new class for the SmartPanel (pupdsav.w). I did this about a year ago, but can't seem to remember the steps. I've tried the ADM Class wizard, but I can't seem to get the main program I need, pupdsav.w to copy. HELP!
  20. D

    Hiding a Parent Window

    V9.1c - Windows Client - Unix Server I have a parent window that calls a child window. I must hide the parent window when I call the child. Currently, the code I have now is... assign hWindowHdl = {&window-name}:handle. {&window-name}:hidden = yes. run child.w ...
Top