Search results

  1. F

    Mailing with progress

    Yeah 3 posts is about has active that you can get before crashing the server because you got too much activity :rolleyes:
  2. F

    Mailing with progress

    It funny because most of his Sub Section are the same name and has the same exact description then the ones on this forum. :lol: I too don't see the point of a new forum especially when it doesn't offer anything new and just copies this one.
  3. F

    Format of decimal in browse

    In a dynamic Browse you can do it like this: DEF VAR hCalcCol AS HANDLE. /*** DEFINE BROWSER HERE ***/ ON ROW-DISPLAY OF dyn-browse-pers DO: IF VALID-HANDLE hCalcCol THEN hColcCol:SCREEN-VALUE = IF <table>.<field> = 0 THEN "" ELSE STRING(<table>.<field>,">>9.99"). END...
  4. F

    A new look for an old interface

    The codejock DataGrid does exactly what you are looking for. The codejock suite is what is recommended in the doc mentionned above.
  5. F

    How to create web service

    I can't really explain the entire process since it pretty extensive but i can tell you what you need to deploy a Web Service in Open Edge. Progress Components : Application Server Proxy Generator (Comes with OE Studio) Non-Progress Components : JSE (Tomcat or JRun) The Application Server...
  6. F

    Writing on sockets : Problem !

    I am from Quebec Canada and yes my primary language is French . Je crois pas que cette solution va avoir un gros impact sur les performances de ton programme car tu ne ferme pas le socket entre les 2 envois . Tu envoi les 4 premiers et les reste en sequence . Le serveur recois presque tous...
  7. F

    Writing on sockets : Problem !

    Your problem seem to be that Readln blocks till it gets the end of line character but if you add it then your compress string becomes invalid to decompress because of the EOL character at the end. Even if you do 2 writes on the progress side the Java side will read the EOL char so your...
  8. F

    Format of decimal in browse

    Create a calculated column IF (<table>.<field> = 0 ) THEN ("") ELSE (STRING(<table>.<field>,">>9.99")) @ cField cField is a CHAR VARIABLE that you declare at the start of your program , progress uses it to display the value in the browser.
  9. F

    Lost sysprogress password

    Data Administration -> Admin -> Security -> Edit User List Delete and recreate SYSPROGRESS with a new password.
  10. F

    OutLook Security Bypass

    Thanks alot Dayv2005, your info is really appreciated. This is gonna solve a big headache :) .
  11. F

    Is it just me?

    That finds that many questions asked by people on progress are just plain lazy? It not hard to do a little research first, ask how to get started or where to find good info . Just saying i want to work with Webspeed to setup a Web Site , how do i do it step by step ain't gonna get a answer...
  12. F

    Current Directory

    FILE-INFO:FILE-NAME = ".". cDir = FILE-INFO:FULL-PATHNAME.
  13. F

    First steps

    There is no easy answer to this because WebSpeed need to be properly configured with a Web Server to be able to run sample programs . The best way to get started is to read the Progress Documentation : OpenEdge Getting Started : Webspeed Essentials. It will guide you step by step on how to...
  14. F

    How to use a Procedure

    At the start of your program (only need to do it once) define variable p_handle as handle no-undo. run CreateVersion.p persistent set p_handle. The each time you need to call it : run CreateVersion in p_handle (hDoc , hOrderRequest ).
  15. F

    Installing Architect

    You need to install the OpenEdge Architect Product wich has it own control numbers , it doesn't come with OE Studio. If you have the complete developers PSDN Premium Kit then you should have the control numbers on your serial sheet , if you only have OE Studio then you will need to buy OE...
  16. F

    Window and browser not displaying correctly

    The problem is the order in wich the object are realized in Design mode VS Run-Time mode. In design Mode the browser is realized before the window that why you get the error message that the Shared Temp-Table is not located , the window did not have the time to create the new shared before...
  17. F

    Recompiling encrypted v8 code under v10

    We use the same xcode encrypted files on V8 , V9 and V10 . You just need to specify the right encryption key in the compiler options and it should work. If the compiler can't decrypt the code it probably because the encryption key is wrong , xcode hasn't changed since V8.
  18. F

    exporting to xls format

    You can always do this to save it : hExcel:ActiveSheet:SaveAs(cFilename).
  19. F

    Licensing Model Question

    Is there anyone who is familiar with the different Licensing model progress uses when selling RDBMS and AppServer Licenses who could explain the meaning of the different models . They're are 3 models on the progress Price list: - Named User - Registered User - Access Agent I was wondering...
  20. F

    Multithreading

    For your problem you can simulate multi-Threading with the command PROCESS-EVENTS. if you design your sync procedure around this , you should be able to continue processing the scanner while sending data. You need to put the PROCESS-EVENTS in each of your large Transaction . What will...
Back
Top