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 IamaSherpa 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: *

  • Users: tjfox
  • Order by date
  1. tjfox

    Creating a New Record with a data bound form

    1. if you reach the last record, issue the command data1.recordset.addnew 2. then set the focus to the first textbox 3. type in the values for each text box 4. for the last text box, it's lost focus function should contain the command data1.recordset.update
  2. tjfox

    Adding a New Record to a Database

    When you create textboxes, make sure you specify the datasource and the data field for each. e.g. name : txtidno datasource : data1 datafield : idno to add : with data1.recordset .addnew .idno = txtidno.text ' insert the other fields if there are other fields...
  3. tjfox

    creating a web style interface for VFP Apps

    Make use of FOXWEB at www.foxweb.com
  4. tjfox

    Enabled Buttons?

    * when add mode with thisform store .f. to .btnadd.enabled, .btnedit.enabled,; .btndelete.enabled, .btnnext.enabled,; .btn .... etc. end with * to update or cancel with thisform store .t. to .btnadd.enabled, .btnedit.enabled,; .btndelete.enabled...

Part and Inventory Search

Back
Top