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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PaulColes

    thread184-685216 - remove duplicate entries in a table

    ooops - next time I'll read all the question :-)
  2. PaulColes

    thread184-685216 - remove duplicate entries in a table

    SELECT DISTINCT * from thingy would work
  3. PaulColes

    VFP8 Corrupted DBF

    You could go to your back up Sorry but I had to :-))
  4. PaulColes

    General Database Question

    If I understand you problem correctly you could try the Microsoft ODBC drivers for Foxpro. http://msdn.microsoft.com/vfoxpro/downloads/updates/odbc/default.aspx
  5. PaulColes

    Problem with NULL fields

    Hi Alberto Sorry I cant help you with your initial problem but I did spot a "top tip" to increase the speed of your code. replace field1 with blah,field2 with blah,field3 with blah works out faster than replace field1 with blah replace field2 with blah replace field3 with blah this...
  6. PaulColes

    How to print detail table twice on the same sheet

    At the end of the first table print call a function that returns "" and contains the code to go to the first record you with to print from. =gotop() function gotop go top && or locate code return "" this will put the report in a never ending loop :-) so some sort of...
  7. PaulColes

    Pause program execution

    Hi, Nothing wrong with a long timeout but this may be more helpfull. =paws(20) FUNCTION paws PARAMETERS mins DO WHILE mins<>0 WAIT WINDOW &quot;Waiting for &quot;+STR(mins,3,0)+&quot; minutes....&quot; TIMEOUT 60 IF LASTKEY()=27 mins = 1 endif mins = mins - 1 ENDDO RETURN

Part and Inventory Search

Back
Top