Search results

  1. A

    Question State-Reset vs State-Aware example

    Hi, I am aware about the theoretical difference between State-Reset and State-Aware operating mode of Appserver but not able to figured out any example how State-Reset reset its context once disconnected from client and State-Aware maintain context even disconnected from client for future...
  2. A

    Question Appserver Partitioning

    Hi All, I want to know what is appserver partitioning and the advantages of it. Could anyone help me on this. Thanks Ankit
  3. A

    Font Setting

    Hi All, I want to fetch the updated font information without putting this information permanently into related font .ini file. I am using the given code to allow user to update font setting:- DEFINE VARIABLE iFont AS INTEGER NO-UNDO INITIAL 3. DEFINE VARIABLE cChangeFont...
  4. A

    Appservice Environment variable

    Hi All, I want to fetch the appservice name for some purpose. I am not sure but think there may be some environment variable setting which can give the appservice name. If an environment variable exist for this, then i can use OS-GETENV("var_name") to fetch its value. Please let me know if any...
  5. A

    Progress Installation Directory

    Hi All, First of all thanks for your replies. I have overcome with this question... To check the installation directory i am using the following code:- DEFINE VARIABLE cDLC AS CHARACTER NO-UNDO. ASSIGN cDLC = OS-GETENV("DLC"). IF cDLC = ? THEN GET-KEY-VALUE SECTION "Startup" KEY "DLC"...
  6. A

    Progress Installation Directory

    Hi All, Is there any way to fetch the progress installation directory (Directory where Progress is installed)? Regards Ankit
  7. A

    Child Window Handle in Dynamics

    Hi All, I am using Progress Dynamics 9.1E. I want to fetch child window handle in the parent window. I have a parent window with toolbar (Toolbar made up From the Appbuilder option "Toolbar And Menu Designer") buttons from where user can access the child window. Now i want to fetch handle of...
  8. A

    Search a file with name

    No...The file can be present anywhere in the system.
  9. A

    Search a file with name

    Hi All, I have a file (file name is available) and i want to fetch the location (Path of the file) of this file using progress 4GL code. Can anyone help me? Please reply urgently. Thanks.
  10. A

    Document not being displayed correctly through webspeed

    Hi All, Thanks for your great support.. I have resolve the problem. The Problem was with these three statements. OUTPUT-HTTP-HEADER("Expires","0"). OUTPUT-HTTP-HEADER("Content-disposition", "attachment; filename=" + cDisplayName). OUTPUT-CONTENT-TYPE("application/msword"). These statements...
  11. A

    Open Lotus Notes Calendar view

    Hi All, I am looking to read a lotus notes calendar entry through the com-handles. I have done this by picking up the calendar view handle and other methods of lotus notes. I am picking up the calendar view handle in the following manner:- ASSIGN chCalenderView =...
  12. A

    Document not being displayed correctly through webspeed

    I have tried the code given in last reply i.e., reply no. 9, but the problem is still remains. Please help. Thanks Ankit Kumar
  13. A

    Document not being displayed correctly through webspeed

    I have tried this option already and put it before streaming the document contents into html. But i am not sure that this is the right place to use this. Please suggest where "output-content-type ("application/msword; charset=iso-8859-1":U)" should be placed. I also want to know, Is there any...
  14. A

    Document not being displayed correctly through webspeed

    Hi Cringer, Thanks for your reply. I think you are right and it may be a charcter set issue i.e. displays control character on the web page with the original document contents. Please tell me how I can resolve this problem ("character set problem") to display the document contents correctly...
  15. A

    Document not being displayed correctly through webspeed

    No, I think it is not a character set issue. Actually original document contents are displaying on web page but some others control chracters are also displaying with the document contents and the document is not in the correct format.
  16. A

    Document not being displayed correctly through webspeed

    It is a word document and i am using progress 9.1E version and OS windows. One more thing i am not recieving any error but document is not being displayed correctly. I have the following code to open the document:- <script language="speedscript"> DEFINE VARIABLE cFileName AS CHARACTER...
  17. A

    Doubt in Index Working

    Thanks for your reply. I am focusing on ROWID because I want to know that in what cases progress may return the different result to the FOR FIRST and FIND FIRST statement.
  18. A

    Document not being displayed correctly through webspeed

    Hi All, I am trying to view a document through WebSpeed. And I've managed to "open" the document but I get a lot of special character all over my document - looks as if the control characters are not being displayed correctly. Please answer urgently.
  19. A

    Doubt in Index Working

    Doubt in Index Bracketing Hi All, Please tell me how index bracketing use in case of query uses multiple index to fetch the perticular record from the database. If a query using two index for fetching the first record (i.e., For First table-name where "condition"), then how RowId will be...
  20. A

    Doubt in Index Working

    Can you clarify the index concept with the given example:- Assume that databse table has the following entries:- Name SalesRep ----- --------- A L B N B J C O If table has two non unique index i.e., name and sales-rep, then one bracket will be...
Top