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 Chriss Miller 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. hodge2

    FASTER METHOD FOR FINDING DUPLICATE RECORDS?

    Add a logical column called dup. Replace all dup with .t. Index on phone tag phone uniq Replace all dup with .f. When set to natural order all the of the dups are marked with true in the dup field.
  2. hodge2

    using VFP 6.0 to import excel 2000 spreadsheet

    I created a dbf table with the same format as the spreadsheet. When I use an "append from filename.xls type xl8" the error message is: microsoft excel file format is invalid. If I open the spreadsheet and save as Excel 5/95, then FoxPro has no problem. Is FoxPro 6.0 incompatible...
  3. hodge2

    using VFP 6.0 to import excel 2000 spreadsheet

    Is it possible to use ole to import an Excel 2000 spreadsheet into VFP 6.0? I just get an ole error.
  4. hodge2

    send email attachment with foxpro

    I found the following code on your site and it works great. How do I add an attachment? oApp = createObject("Outlook.Application") oMail = oApp.CreateItem(0) oMail.to = "whoever@wherever.com" oMail.subject = "Email from VFP" oMail.body = "Test email sent...

Part and Inventory Search

Back
Top