Recent content by cw2kirk

  1. C

    Open from unix prompt

    Can you tell me if there is a way to open a program for revision with having to open the editor then 1)using the menu to tab to the file or 2) "F5" then type the program name in? I have multiple programs that search muliple tables, and I would like to be able to open the programs from the...
  2. C

    Variables

    My real question is how do I get Progress to read the value of the variable and not the name of the variable. My previous example was not exact because you see me hard code the name "Employees" into the variable, but in my real program the name "Employees" is the value of a field in a table...
  3. C

    Variables

    My real question is how do I get Progress to read the value of the variable and not the name of the variable. My previous example was not exact because you see me hard code the name "Employees" into the variable, but in my real program the name "Employees" is the value of a field in a table...
  4. C

    Variables

    My code reads; DEFINE VARIABLE MyTempTable AS CHARACTER "X(25)". MyTempTable = "Employees". FOR EACH MyTempTable. Display MyTempTable. This gives an error stating MyTempTable is not a table. Q: Can I get Progress to read the value of MyTempTable variable ("Employees") in my...
Top