Search results

  1. D

    Auditing - Creating data for one table and not the other

    I was able to get the audit data generated. I'm not sure what the issue was, but it's good to go now.
  2. D

    Auditing - Creating data for one table and not the other

    I only need table related auditing. Anytime a table is created, updated or deleted. I don't care about the values of the changes.
  3. 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...
  4. D

    Question Opening a .tif file using MS Viewer

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

    Using FieldInfo parameter of OpenText Excel Command - Keeping Leading Zeros

    After quite few hours researching the issue, I've finally found a solution that works. When creating the .txt data file, if you append =" in front of the field and a " at the end, Excel will pull it in correctly. In Progress, it would be: assign outputField = "=~"" + field-name + "~"". In...
  6. D

    Using FieldInfo parameter of OpenText Excel Command - Keeping Leading Zeros

    Rob, it's actually a report generated with embedded SpeedScript. The reason why we are using OpenText is speed and because that's what my boss wants. I get the 361 compile error I noted above when I try to pass a Progress array as a parameter the OpenText function. When I use a hard-coded text...
  7. 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...
  8. D

    Launching Internet Explorer

    That should help. Thanks, medu.
  9. 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...
  10. D

    Data Extraction Issue

    Progress has a solution for this in their KBase. It's ID P112126 "How to import a CSV file which contains commas in the data?".
  11. D

    Importing Multiple Data Types from File

    Thanks. I need to import all data types in as characters. I'm mostly trying to find out how I can import "01 2009", keeping the space in tact.
  12. D

    Importing Multiple Data Types from File

    Thanks for the replies. Unfortunately, I don't know how many pieces of data will be on a single line and I don't know their data types. I can put all the strings into a character array, so I don't have to worry about the data type when I store the data. Any more ideas?
  13. 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...
  14. D

    Frame Handles In Window

    Thanks, RHD, that was exactly what I was looking for. Sorry to leave out the version info. We are on 9.1E and about ready to migrate to 10.2, so your solution will work.
  15. 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?
  16. 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?
  17. D

    Asynchronous AppServer Call

    Hey, I'm just the programmer, so I just try to code it how they want it. :confused: Another problem is that we don't have the code to our menuing system or the initial start-up procedure. So, I really can't put any code in there. (Nothing like coding with one hand tied behind your back.) I...
  18. D

    Asynchronous AppServer Call

    Thanks for your response, Greg. Unfortunately, there are hundreds of procedures that the user could be in, so it would be completely unpractical to put the "report-done" IP in all those programs. And, I was under the impression that the event-procedure could not be an external procedure...
  19. D

    Asynchronous AppServer Call

    I'd like the "fire and forget it" option. The only thing I need to do (which is what I'm trying to do in the report-done internal procedure) is disconnect the AppServer process and delete the handles that are used to connect to it.
  20. D

    Asynchronous AppServer Call

    Yes, both the run of report.p and the report-done internal procedure are in the same program (w-window.w).
Top