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 strongm 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. MikeCPVFUG

    Can't Use my subclass library anymore !

    Hmmm...that's odd. Zip and send your classlib to me offline and I'll look at it if you wish. --Michael Michael J. Babcock, MCP Founder, Central PA Visual Foxpro Users Group mbabcock@cpvfug.org http://www.cpvfug.org
  2. MikeCPVFUG

    tableupdate and tablerevert(help)

    Well, you can explore the possibility of using triggers on table1, but do you really want that? I may be misunderstanding you, but it sounds like you want automatic updates of other related tables. If that's accurate, check out triggers in VFP help. Also, when updating your tables, consider...
  3. MikeCPVFUG

    AutoNumber

    If in multi-user scenario, you'll need to temporarily perform an RLOCK on the lookup table that holds the sequence counter to ensure that other users don't get the same number. My adaptation: FUNCTION NewKeyID LPARAMETER tcAlias * tcAlias is the name of the table which needs a unique key...
  4. MikeCPVFUG

    How can I make my application Load Faster!!!!

    To use the "Delayed Instantiation" technique (which merely says don't create the containers/controls under you really need them--for example, the controls on pages that are not initially showing don't need to be instantiated until the user navigates to that area), say your screen...
  5. MikeCPVFUG

    Read & Write INI files

    Here's a snippet on how to manipulate INI files/values (also derived from Markus Egger's Adv OOP book): * read the value from the INI file local lcValue, loINI, lnError loINI = NewObject("oldinireg",home() + "ffc\registry.vcx") lnError =...

Part and Inventory Search

Back
Top