Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by clip4ever

  1. clip4ever

    Degug a clipper program

    used to be able to debug in the past, but since we moved the app to windows and I'm compiling in Wndows XP, I'm not able to debug using Alt+D, nor ALTD() in code, nor CLD.exe. I compile fine with the debug option but I cannot run the debugger. Please help by providing steps to compile with...
  2. clip4ever

    Advantage Databse Server (ADS) Tips

    Thanks... You made my day. I'm looking for success stories to advance my case. Thanks again clip4ever
  3. clip4ever

    Database Trafic

    I was afraid this is the case. Thanks
  4. clip4ever

    Database Trafic

    Question: I loop and read a set of records from a table. If I restart and read the same set of records again, does this cause another trip to the database or the program uses the records retrieved earlir ? Thanks in advance clip4ever
  5. clip4ever

    Curiosity - How Many Clipper Apps are in Use Today?

    We have several Clipper 5.2e APPs still running. 6 of them are critical 7/24. 1 critical APP has just been developed and deployed last month. They are going to stay for long Time (years). More functions are still being added to these APPs for 2 main reasons: -- Cost. -- Performance. Clip4ever
  6. clip4ever

    Fivewin application on XP

    I'm not sure this is the case, but if you have C programs that deal with COM ports or checks the Serial Port, it is different in XP. XP does not allow checking the DSR in a C program. clip4ever
  7. clip4ever

    Advantage Databse Server (ADS) Tips

    We are planning an upgrade to use Advantage Database Server (ADS by Extended Systems-Sybase) for our App that uses DBF/CDX. Is there Anyone who did this conversion? Any tips ?, i.e.: -- Recommended or not? -- Does it really improve parformance dramatically as they claim? -- DOs and DONT's...
  8. clip4ever

    Better database engine

    All, As a feedback on my experience with this problem, we implemented CDX index and the response Time improved dramatically in on-line and batch programs. However, we had some side effects that we are still working on, like a highly used batch server program crashes often. By putting some delays...
  9. clip4ever

    Better database engine

    Thanks. But pack cannot be used in on-line applications because it requires exclusive access. clip4ever
  10. clip4ever

    Better database engine

    Griff, Ok, I know my mistake now. I had to include this UDF in the index program and in a library used by many other online and batch programs that are accessing the same db but compiled in different EXEs. I replace the CHR(255) with "z" and added 2 spaces at the end of this particular index...
  11. clip4ever

    Better database engine

    Griff, How do I do that. I'm including the function in the same re-index program. Do I need to include it somewhere else ? or define it ? Clipper does not recognize other than clipper commands and database fields in an index expression. Clip4ever
  12. clip4ever

    Better database engine

    Griff, This code does not work because Clipper INDEX ON needs and expression to evaluate not an index value. Regards clip4ever
  13. clip4ever

    Better database engine

    Interresting... I'll try to get approval... Thanks
  14. clip4ever

    Better database engine

    Thanks again. I'll find out what are my chances in doing this in Production. clip4ever
  15. clip4ever

    Better database engine

    Here's the Index expressions/code: ---------------------------------------------------- DO OPEN_FILE WITH "ITMSCAN","ITEM SCAN" DO INDEX_FILE WITH "rcp_id + STR(seq_no,5,0)", "ITMSCAN" DO INDEX_FILE WITH "pin + status", "ITMPIN" DO INDEX_FILE WITH...

Part and Inventory Search

Back
Top