Search results

  1. J

    RAS PKCS Encryption

    Hi all, Does anybody know of a way to do RAS Public/Private Key encryption in Progress 4GL? The Encrypt statement only supports symmetric encryption. Using OpenEdge 10.1B. Thanks in advance. J.
  2. J

    Foreign Key/Primary Key

    Hi all, Does anybody know how I can find the relation between tables through the use of _file and _field? What I want is similar to the table relations report in the data dictionary or data administration. I can easily see what tables have a certain field with a query on the _field and _file...
  3. J

    Lotus Notes

    Hi All, Did anybody manage to get progress working with the NotesSql ODBC Driver? When I try to add the schema in the Data Administraton I get a IM001 [microsoft][ODBC Data Manager] Driver does not support this function. message, after which the data administraton crashes. Anybody know how...
  4. J

    DotR Website

    Hi All, Does anybody know what happened to the DotR website? Haven't been able to access it for a couple weeks now. J.
  5. J

    DTPicker how to get time value

    Hi Peggers, I'm trying to use the DTPicker OCX in progress 9.1D When I call the value it always returns the selected date. How can I get the selected Time, It doesn't matter which format I set the ocx to, I always get the date when I call the Value. In VB I saw that need to do something...
  6. J

    Surpress Error when CREATE record

    Hi Peggers, If I have the following sample code I force the creation of an already existing record. DEFINE TEMP-TABLE tmpTest FIELD test AS INTEGER INDEX test_pk IS PRIMARY UNIQUE test. CREATE tmpTest. ASSIGN tmpTest.test = 1. lbUndo: DO ON ERROR UNDO lbUndo, RETURN...
  7. J

    Progress V8 and V9 on one PC

    Hi all, Does anybody know what I should do to get Progress 8.3b and Progress 9.1c Running together on one Win2000 machine? ( other then installing them of course ;) ) So I can use both without needing to reboot. What are the possible problems/solutions. We still develop in 8.3b...
  8. J

    Version info tab on file properties

    Hi all, Does anybody know if it is possible to add a tab to the file properties one sees when right-clicking on a file in windows and selecting properties. Similar to the summary tab, but also viewable in windows 98. The summary tab doesn't seem to be there in the file properties. For .r...
  9. J

    Os-command

    Hi Peggers, Windows 98SE PROGRESS 8.3B Im using OS-COMMAND to run a dos command. This results in the MS-Command window being opened in Windows. In this command window a "dos editor" is open and it expects CTRL-D to continue. How can i from my Progress code send the CTRL-D to the...
  10. J

    Data exchange Com-object <> Progress

    Which datatype needs to be provided by an ActiveX-object to realize a MEMPTR in a Progress application. We have a problem with data exchange between an ActiveX-object and our Progress application. The ActiveX-objects sends information (a string) to our application but Progress does not...
  11. J

    Show users/computers on windows network

    Hi Peggers, Does anybody know how I can show the (logged in) users/computers on a windows network in progress v8.3b. So that the username/computername can be selected? If anybody has any sample code it would be great. Thnx already, J.
  12. J

    WinPopUp

    Hi peggers, Anybody know how to send/recieve messages from progress to winpopup? Or know where to find some samplecode? I noticed the mailslot example out there but didn't manage to get it to send a message that popped up in winpopup. Thnx already, J.
  13. J

    Locked Record In DB without User

    Hi all, Progress 8.3b and 8.3b database. Does anybody know how long progress keeps a record in exclusive lock even though the user that did the lock is not connected to the database anymore? Thnx already, J.
  14. J

    Scroll-bars in browser

    Hi Peggers, Does anybody know how I can turn off the Horizontal and Vertical scroll-bar on a browser in Progress 8.3B...Doesn't seem to be an option on the property screen. Thanx already, J.
  15. J

    Insufficient disk space or Write access denied. (291)

    Hi Peggers, One of my collegues is getting this error: Insufficient disk space or Write access denied. (291) A PROGRESS process did not find sufficient disk space to continue processing. Common problems associated with lack of disk space are user temporary files (which are deleted at...
  16. J

    Importing files from os-dir

    Hello Peggers I'm working on an application that imports files from a directory (eventually also subdirectories). Some of the files will be converted to one or more files in that same directory and should also be imported. We used the following code (simplified) for this: DEFINE...
  17. J

    Setting attribs of Files in Progress

    Hi all, Does anybody know if there is a way to set the attribs of a file from Progress withouth using the dos attrib command through OS-COMMAND? If so....how? Using progres 8.3b on win98. Thnx already J.
  18. J

    Progress dlc directory from registry

    Hi Peggers, Can somebody enlighten me how to read from the windows registry with progress version 8.3? I want to lookup the dlc\bin directory from there and store it in a variable. so my tool can be used on different systems where progress might be installed on different drive then the one...
  19. J

    Number of records in table

    Hello Peggers, Does anybody know a way to quickly see how many records there are in a table. We tried: for each {table-name}: i = i + 1. end. display i. and also tried : select count(*) from {table-name} But when you have a large db/table this can take a lot of time. Is...
  20. J

    Selection List in progress 8.3B

    Hello All, Could anybody tell me how to make a selection list in progress 8.3B that shows for example "Tekst" as label but uses for example 1 as the actual value? (i heard of list-item-pairs, but starting to think that it is version 9 and not 8.3B where i can do that) Thnx already, J.
Top