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

  • Users: wrgt9740
  • Content: Threads
  • Order by date
  1. wrgt9740

    Update Records From Another Table

    I've been reviewing the clipper code of our programmer who has already left, and I could not see how he was able to update records of a different table. The two tables involved are ITEMS.DBF and TRANSACT.DBF. ITEMS.DBF has fields CODE and DESCRIPTION, while TRANSACT.DBF has fields INVOICE, CODE...
  2. wrgt9740

    How To Insert Into Table Values From Textboxes And Cursor?

    Hi. I'm making a customer purchase form with textboxes, a cursor, and a table. The textboxes are txtInvoice and txtName. The cursor is csrPurchases with fields "ITEM" and "PRICE". The table tblTransactions has fields "INVOICE", "NAME", "ITEM", and "PRICE". Is it possible to get values from...
  3. wrgt9740

    I Don't Understand <>

    Hi. I have a simple code: create cursor csr1 (name C(5)) insert into csr1 (name) values ("A") insert into csr1 (name) values ("B") insert into csr1 (name) values ("C") insert into csr1 (name) values ("D") insert into csr1 (name) values ("E") create cursor csr2 (name C(5), exist N(1)) insert...
  4. wrgt9740

    How To Remove Repeating Blank Rows Due To Blank Records

    Hi. First of all, I'm currently making a Foxpro version of the Clipper program that our company is still using. I have 2 tables: items.dbf and trans.dbf. Items is where we store information on our products, and trans is information on purchases and sales of our products. In items.dbf, two of...
  5. wrgt9740

    Use Option Group Or Switch To Buttons?

    Hi. I am currently having problems with my option group. My form has a grid, a start date textbox, an end date textbox, a run button, and an option group. The grid that displays a table with date, invoice, and item as fields. The textboxes are where a user enters the date range of records to...
  6. wrgt9740

    How To Replace Data To Another Table With Conditions

    Hi. I have two tables named tblItems and tblReport, and I'd like to replace the data of tblReport with tblItems so I could see the comings and goings of a specific item. tblItems has fields Date, Item, Quantity, and Status. Status is either "I" for incoming, or "O" for outgoing. Quantity...

Part and Inventory Search

Back
Top