Search results

  1. S

    Difference between set, update and prompt-for

    PROMT-FOR: Data will be moved from Userto Screen Buffer. SET: Data will be moved from User to Screen Buffer and Screen Buffer to Record Buffer. UPDATE: Data will be moved from Record Buffer to Screen Buffer and then User to Screen Buffer and Screen Buffer to Record Buffer. SET is combination of...
  2. S

    Missing Editing Options in Progress Editor 10.1C

    Hi, If you have the demo version, you can not see the Editing Option in Option menu from Progress editor. Regards, Sridevi Stalin
  3. S

    Piew - Free Progress Code Editor

    Thank you so much sharing such kind of information. It works as expected
  4. S

    Need OpenEdge on-line certification

    Thank you so much for your quick response.
  5. S

    Need OpenEdge on-line certification

    Hi, Is there any on-line certification (free/pay) for OpenEdge any varion? Thanks, Sridevi Stalin
  6. S

    Need to know progress product tool to Review or Test the Progress codes?

    Hi, Is there any progress product tool to Review or Test the Progress codes like debuger in the morket? Thanks, Sridevi Stalin
  7. S

    Need progress cerification courses

    Certification OpenEdge versions...
  8. S

    Need progress cerification courses

    Hi, Is there any on-line certification (free/pay)? Thanks, Sridevi Stalin
  9. S

    Need progress cerification courses

    Hi, Is there any on-line certification (free/pay)?
  10. S

    Error code -20011 returned from fnfnd (1410)

    Oh, that I forgot to type there, that is sample code only. not real. just want to explain the program flow. I checked in psdn with error code1410. but the answer is not very much related. one more thing is that working version is OpenEdge10.1A. Thanks in Advance, Sridevi Stalin.
  11. S

    Error code -20011 returned from fnfnd (1410)

    Hi, I'm getting the subject error. Example:- PgmA:- DEFINE TEMP-TABLE ttActionTable NO-UNDO FIELD ttAction AS CHARACTER. DEFINE TEMP-TABLE opTable NO-UNDO FIELD ttAction AS CHARACTER. &SCOPED-DEFINE sdAction "AAction,BAction,CAction" RUN PgmB (INPUT TABLE ttActionTable, OUTPUT TABLE...
  12. S

    progress code upper case

    I think, all parameters available in progress.ini file, isn't it?
  13. S

    Formatting dates

    Hi, there are three place to change your date format, 1. when initialization of progress. 2. if you are maintaining .pf file (parameter file) to run your application 3. you can specify the format of fill-in widget whatever it is. If you need in the category of no.2, You may specify in that .pf...
  14. S

    Trigger On Creation

    Why don't you try the CAPS()Function.
  15. S

    How to Load Image into Excel sheet purticular Cell?

    Dear Friends, in Progress9.1D, I could insert image into Excel sheet using the following code, DEFINE VARIABLE chPicture AS COM-HANDLE NO-UNDO. chPicture = chWorksheet:Pictures:INSERT("D:\HRMS\AppSrv\sys\src\adm2\image\ggg.jpg":U,). but I want that image into purticular cell of excel sheet...
  16. S

    How can I setup Apache with WebSpeed Linux RedHat?

    Dear Friend, If you got "Unable to open....", might be problem in ".ini" file (initialization file) propath may be wrong, check the propath settings in that .ini file which you are using to run your application. and for "apache"- I know configuration for WindowsXP.
  17. S

    Need Communication b/w WebServer & DB

    Dear Friends, Can u please help me here, Client: (IP-1, Java Application, EmpCode). Webserver: (IP-2, JavaApplication, TomCat Appch WebServer, Ready to get Request “EmpCode” from IP-1). DataBase: (IP-3, Progress9.1D, Appserver Configuration to Connect DB in N-tier Architecture). There is a .p...
  18. S

    FIND NO-LOCK in memory...

    in PROGRESS9.1D Vs WindowsXP. and I've installed PROGRESS10.B(OPEN-EDGE) for learning purpose.
  19. S

    FIND NO-LOCK in memory...

    @joey.jeremiah:- Sir, As per your suggestion I tried out this but it doesn’t make the changes, the same problem is occurring. The following steps I’ve did, In Progress-Explorer Tools, asSPORTSbroker à Server à Advanced Fetures à for Startup Procedure –rereadnolock. Notes:- My Sports-Broker name...
  20. S

    FIND NO-LOCK in memory...

    Yes, this is the drawback of NO-LOCK. Otherwise, we can say this is “Lost Update”-problem Once we fetch the record from DB-Table using FIND, The FIND will move the record from db-table into RecodBuffer as u said in memory To solve this problem, we can review the Record using FIND CURRENT...
Top