Search results

  1. F

    Question 9.1C and Windows CE

    You can install progress on a Unix or Linux server and write a CHARACTER application and use a telnet client on your PDA to login with telnet on the server and run the application. A good telnet for those PDA should transfer the information from the laser read to the telnet session. Also...
  2. F

    Is it possible to run Windows services using the Progress Database

    If you are asking if you can create window services that uses the Progress database then it is possible but you would need to use .Net and appserver. You can create window service in .Net that call the appserver to run procedures on the database.
  3. F

    Is Progress bought by SFDC ( SalesForce.com )?

    I got a progress e-mail trying to promote salesforce ... it kinda pathetic , progress is now a peddler for salesforce ... Progress only made me hate salesforce by moving the KB to it ...
  4. F

    Webspeed setup on linux machine

    Wow we don't even get the Linux Flavor , it version , the progress version , if you want SSL or not and if you want the Linux box to be the messenger to another server or the webspeed agent itself... Asking those questions is a longer post then what you gave us :P A little effort goes a long...
  5. F

    Remove duplicates from Temp table.

    Of course it won't work lol , You never said to group only consecutive records . There is big difference between combining records with the same keys and records with the same key that are consecutive. There are many ways of doing it but you can't use BREAK BY because you need to keep the...
  6. F

    Remove duplicates from Temp table.

    Here is your homework =p DEF VAR iCount AS INT. FOR EACH tt-temp BREAK BY tt-temp.a BY tt-temp.b : IF FIRST-OF(tt-temp.b) THEN iCount = 0. iCount = iCOunt + tt-temp.c. IF LAST-OF(tt-temp.b) THEN tt-temp.c = iCount. ELSE DELETE tt-temp. END.
  7. F

    Deriving High and Low Non-Zero Values

    You can do it in one loop... DEFINE VARIABLE deMaxValue AS DECIMAL NO-UNDO. DEFINE VARIABLE deMinValue AS DECIMAL NO-UNDO. DEFINE VARIABLE deNUMBERS AS DECIMAL NO-UNDO EXTENT 7 INIT [ 0, 0.0579345088, 0.0579345088, 0.0579345088, 0.0502793296, 0.0346715328, 0.029455081 ] ...
  8. F

    Hi, i need your help with progress c# please

    Where did instruction number 4 go? lol
  9. F

    OE Certification

    A OpenEdge certification would be so funny! If it anything like the licensing it would be a incomprehensible mess . You would get Certification Agent or Named User Certification . If your company has more then 50 programmer then you need a enterprise based certification that would offer a...
  10. F

    Large report transactions - multi-threading

    Personnally i would use the App Server to generate your data . You can make multiple Asynchronous calls and concat the data when each of the asynchronous call completes and calls the call back. Once every call has been completed you can use the generate data and print your report.
  11. F

    Data warehouse on openedge feasibility

    That interesting Tamhas, we are maybe getting riped off by progress (and we are supposed to be a big reseller with bulk discounts) but each time that i compared the price we pay and what we would pay with another product (ORACLE, MS SQL) without any special bulk discount (standard price list) i...
  12. F

    Data warehouse on openedge feasibility

    Put me in camp that would never use a openEdge DB for a Datawarehouse that would be used for SQL reporting. 2 reasons ... 1) I always found SQL with Openedge to be sub par and subject to alot of little annoying bugs ... Workaround2=8192 anyone or db name suddendly becoming case sensitive...
  13. F

    Can input parameters be passed via a URL?

    You can use the Get-Value function included in the webspeed includes to get your URL paramaters. cParam1 = Get-Value("param1"). cParam2 = Get-Value("param2").
  14. F

    Activex Controls and Openedge

    Your problem is with your .wrx . There is a bug where .WRX created with version 9.1D and lower will give and Insufficient memory error when you run it versus a Client that 9.1E or Higher. If you rebuild your .WRX with a higher version of progress you will fix that problem but your 9.1D...
  15. F

    Web Services Adaptor

    What JSE and OS are you using? if you enter your JSE URL in a browser do you get that it working ? Then does your wsa url work ?
  16. F

    Create an Outlook Meeting Request email

    I recommend using the ICalendar format... http://en.wikipedia.org/wiki/ICalendar it a simple text file that you attach to your e-mail
  17. F

    URL mapping

    Actually you only need "AllowOverride FileInfo" to enable mod_rewrite .
  18. F

    Can AppServers be run with a lower process priority?

    We use replication for our reporting. There is one AppServer on the target Machine that register on the name server of the main machine who also has a appserver broker. All large data query and reports are sent to the replicated App Server. The main UI work and updates are sent to the...
  19. F

    New Progress SupportLink Kbase?

    One on my co-worker needed to use the KB at 10PM last night because of a database crash and a weird AI error. He was very happy to find a login blocking the KB (Why is this necessary , why does progress need to hide everything and go in the opposite direction is beyond me) and was unable to...
  20. F

    forcing alphanumeric entry

    FUNCTION VerifAlphaNum RETURNS LOGICAL (INPUT pcString AS CHAR): DEF VAR lAlpha AS LOGICAL INIT FALSE. DEF VAR lNum AS LOGICAL INIT FALSE. DEF VAR iPos AS INT. DEF VAR iAsc AS INT. DO iPos = 1 TO LENGTH(pcString): iAsc = ASC(SUBSTRING(pcString, iPos, 1)). IF (iAsc >= 65 AND iAsc <=...
Top