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 wOOdy-Soft 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 davidtoranzo

  1. davidtoranzo

    FoxPro 2.6 application index problem - HELP !

    Hi, I'd suggest, if possible, to contact application programmer to follow his instructions. Maybe in the applications are embbeded index recreation modules (they should) If not, you should identify the table (.dbf file) that is given the error. This may not be easy, specially if there are...
  2. davidtoranzo

    Semaphore Record Locking in FoxPro2.6

    Hi Steve, I suggest you to consult the followings functions and commands in FP help file: RLOCK() SET REPROCESS SET MULTILOCKS UNLOCK There you can find abundant information and examples as well. Good luck! David.
  3. davidtoranzo

    error code 202

    Hi, I suspect that FP can´t find the location for temporary workspace, needed to physically place the cursor. That directory is set through TMPFILES in CONFIG.FP. If you run the SQL from the command window, and no TMPFILES is set, then is used the default start directory (most probably FP's)...
  4. davidtoranzo

    Foxpro 2.6 on Win NT 4 problem. (Fxp files)

    Hi, First, in the 3.11 machine, you should have an ADDRESS.PRG file. Second, in this file there is a line of code that produces an error in the NT enviroment. FP tries to show this line, but it can't. This is because the .fxp and .prg don't match (as Rick says) or because it can't find the...
  5. davidtoranzo

    Remaking cdx indexes

    Hi, You are positive sure when this routines are reached SAFETY is set OFF? David.
  6. davidtoranzo

    Slow database response with FP 2.2 under NT 4.0

    Hi, Queries use lot of disk space. It is very important, to improve network speed, avoiding traffic of temporal files. This means that that FP temporal directory points to the local machine. Check, in CONFIG.FP, the existence of a line like this: TMPFILES = C:\TEMP Of course, this directory...
  7. davidtoranzo

    Upgrade from foxpro 2.6a to foxpro for windows?

    Hi, Even when (as you were told) your DOS applications will run in any ulterior version with no code change, you will have to consider that the only sense to change is to use the new and more powerful capabilities of the new versions. What I mean is that the smallest change, that is to say...
  8. davidtoranzo

    the problem of display in win2000

    Hi, A very similar discussion took place in this thread: thread182-171110. Hope this helps. David.
  9. davidtoranzo

    Strange Foxpro Error

    Hi, Would you tell us about the sintax of the line which produces the error? That might help. David.
  10. davidtoranzo

    BOF() and EOF() misreporting

    Hi, To extend the concept, you have to consider BOF and EOF as "suplemental" records. It means that you have a record (BOF) before the first record and another one (EOF) after the last one. So BOF is located going TOP and issuing SKIP -1 and EOF going BOTTOM and issuing SKIP. The...
  11. davidtoranzo

    keyboard '{escape}' command problem

    codetyko, If you are editing a memo field (yourmemofield), you don't need to store it into a variable (m.det1), unless you consider a "Cancel" buttom in Screen B. If you have only "Save" option in Screen B, just edit yourmemofield in an Editting Region. Then you can...
  12. davidtoranzo

    How to get Disk Serial Number in fwp2.6

    codetyko, I'll try to translate: "Once I made something like this through MS-DOS 25h interruption (absolute disk reading). It's not easy (you should create an Assembler program and compile it to create '.bin' file. This one is load it passing a parameter (LOAD myroutine.bin WITH...
  13. davidtoranzo

    Network Printer Dilemma

    Hi, Try SET PRINTER TO \\<machine name>\<printer name> = LPT1 before launching the report. Remember FPW only accepts 8.3 names format. Hope this helps. David.
  14. davidtoranzo

    Does any one know how to change local time?

    Hi Kate, From http://www.jjtc.com/Fox/foxfiles/ you can download &quot;gp30.zip&quot;, which includes a function named &quot;N_ServTime()&quot;. According to the documentation, returns File Server Time. Good luck. Hope this helps! David.
  15. davidtoranzo

    How to get Disk Serial Number in fwp2.6

    Jorge: En alguna oportunidad hice algo así con la interrupción 25H de MS-DOS (lectura absoluta de disco). No es simple (hay que crear un programa en Assembler, y compilarlo para crear un &quot;.bin&quot;). Luego se carga pasando un parámetro (LOAD mirutina.bin WITH cadena, y el FP retorna el...

Part and Inventory Search

Back
Top