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 Mike Lewis 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. imronh

    Controls Disappear on a Simple Form

    Foxpro binds controls before the INIT event. Your grid cannot find what it's looking for. There is a solution: Instead of entering your code in INIT, put it all into the DataEnvironment's BeforeOpenTables Method. That way all your tables are populated and ready to be bound as your form's...
  2. imronh

    Indexing Problem

    try this ----------------------------- *** This will transfer unlimited number of unique records: index on lastname+file_num to lastname UNIQUE COPY TO TEMP use <newDBF> APPEND FROM TEMP ------------------------------ You used an array which has memory constraints. Maybe you found the limit.

Part and Inventory Search

Back
Top