Search results

  1. R

    Get KEY pressed event

    Hello All, In a simple fill-in, how can I check as each keystroke is pressed, what key was presssed? I what to see (manipulate) when the field changes and watch for a special character to be entered. Thanks, Mike
  2. R

    Launching an External Program

    Hello All, I have found code to launch an external program, ie Notepad.exe, but it appears I need the files listed below. Does anyone know where I can get a copy of these? windows.p windows.i winfunc.p winfunc.i Mike
  3. R

    Getting a System Variable

    Thanks Tom, Works great! :) MESSAGE OS-GETENV('ComputerName') VIEW-AS ALERT-BOX.
  4. R

    Getting a System Variable

    Hello all, Is there a way in OpenEdge to get an environment variable to a progress variable? Example: Windows XP Pro. I want to get the system variable "COMPUTERNAME" to a character string I can manipulate. Thanks, Mike
  5. R

    Save password in Openedge 10.1A ODBC Driver

    Stephen, we're in the same boat. Did you find a way to save the password?
  6. R

    "What Columns Changes" project

    Thanks jp-uk, Here is what I came up with after I discover the words "OLD BUFFER". If I am doing anything wrong or illegal here, please let me know. TRIGGER PROCEDURE FOR WRITE OF bank OLD BUFFER oldbank. If oldbank.account <> bank.account THEN Do. Create chng-hdr. ASSIGN...
  7. R

    "What Columns Changes" project

    I am on a mission to develop a crude Change Order System. When a table gets updated, what options are available to compare the Before and After to log which columns actually changed? It would also be nice to have both values, Before and After, for any column that changed. Any guidance would...
  8. R

    Parameter Question

    Sphipp. Not only did you answer my question, but you answered a couple I have not even thought of yet. Plus I now have my message working. Message 'File Passed: {&file}'. :) Thank You and Have A Great Weekend!!! Mike
  9. R

    Parameter Question

    Greetings, I have a snippet of code I wish to better understand. "{&file}" &file="jobhdr" (ASSIGN {&file}.Date = TODAY). <-- Works Great Message {&file}. <-- Does Not Display "jobhdr" It is an input parameter but I don't understand what it's Datatype would be in the called procedure! I...
  10. R

    Dynamically updated image

    eMe, Thank you for the code example. I fully understand the issues of leaving the files on the file systems. It will be great to have them in the database. Coming up on the To-Do-List is a document control module. At that point we will experiment with the option of saving all our business...
  11. R

    Dynamically updated image

    We are converting from a system that did not have the BLOB capabilities to Progress. I did not realize that was an option. Is the TO and FROM a BLOB field very tricky?
  12. R

    Dynamically updated image

    Good point, I am truly in a "cube" but thought I would sound tougher from a cell!
  13. R

    Dynamically updated image

    :) dayv2005, Thank you! Works Great!!! We now have an Employee maintenance view with employee photos. We are also developing a read-only, limited info, "Face-To-A-Name" view for the new employees. This will greatly reduce that nagging question of "Who was that guy/gal?" Thanks Again, Mike...
  14. R

    Dynamically updated image

    Is there a way to dynamically update an image in a standard image object? I have an OpenEdge Employee entry UI that we want to add an employee photo to. The path for the photo is in the metadata and the photos are on the file system. As each employee record is found, I need to update the image...
  15. R

    Column/Record Count

    Thanks to all who helped me on this thread. You have taught me more than I ask for (always a good thing). I am new to Progress, Old to code developement. I always prefer to learn the base code first then get fancy. :) Thanks Again! Mike
  16. R

    Column/Record Count

    Works great Tom, Thank you. I am working on getting the same results from code. (Learning Experience) Bear with me on my terminology: How can I take a metadata value and address it as a table name? Example: OUTPUT TO C:\TableList-RowCount.txt. REPEAT: FIND NEXT _file. REPEAT...
  17. R

    Column/Record Count

    Philip, Thank you for the relpy. the snippet works great and count the columns as asked. BUT I guess I asked the question WRONG. Is there a way to get the number of records currently saved in each database table. Thanks, Mike
  18. R

    Column/Record Count

    :) Good morning All, I am looking for a way to get a list/print of all Tables in a Progress DB (10.01b). The tricky part is also need to get the Column/Record Count for each table. Is this doable? Thanks, Mike
  19. R

    Trigger On Creation

    Parul, I am bound to a canned software package that has the Write Trigger compiled in. I do not have access to this trigger. Nor do I have access to the UI code. Is there any options to force an ID field to be uppercased upon creation or immediatly therer after? Mike
  20. R

    Trigger On Creation

    Hello, I need to get data entered by a user and uppercase the value "On Creation". code: TRIGGER PROCEDURE FOR CREATE OF Bank. Update Bank Set (Id) = (UCase(Id)). When this trigger fires, the data does NOT appear to be available for update. I assume it is still in a buffer...
Back
Top