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

  • Users: ivatanakoo
  • Order by date
  1. ivatanakoo

    Multiple record

    i got it, tnx for your help...
  2. ivatanakoo

    Multiple record

    the error is on the declared variable x, x is not a numeric
  3. ivatanakoo

    Multiple record

    I mean i can only add one record at one time in that given code.. i tried to use the for loop but got an error.. sory if the code is not maybe accurate cause i'm new in using loop. LOCAL x as Integer 1 x = thisform.pgfinventory.addinventory.txtQty.Value FOR n = 1 TO x ? n SELECT item_table...
  4. ivatanakoo

    Multiple record

    i want to add the same data at one time on the same table
  5. ivatanakoo

    Multiple record

    how to add multiple record the same record at a time. append blank replace name with... append blank replace name with... this doesnt work..
  6. ivatanakoo

    two grid with the same data

    do i code it to the init of the grid?
  7. ivatanakoo

    Methods /properties

    i have already done that sir mikelewis but nothing there, but if i go to the form tab and edit property/method,it is there..
  8. ivatanakoo

    two grid with the same data

    it gives me the error.. alias name is already in use
  9. ivatanakoo

    Methods /properties

    even i create new property, i cant find it..
  10. ivatanakoo

    two grid with the same data

    i have two tables with the same data but: i this is i want 2nd table itemquantity product3 1st table itemquantity product1 product1 product1 i want that the quantity of a product in the 1st table is sum up to the 2nd table.. should i use locate and add the qty of the same product?..
  11. ivatanakoo

    Methods /properties

    i am new in creating new properties or methods, i m done creating method but i cant find the method i created in my property window to code it. please help..
  12. ivatanakoo

    grid in vfp

    Thank you.
  13. ivatanakoo

    grid in vfp

    SELECT item_table LOCATE FOR status = "For Disposal" IF FOUND() thisform.pgfinventory.page1.grdItem_table.BackColor=rgb(159,255,230) ELSE endif i want to change the backcolor of a record with a value of "For Disposal" in the status field but it just change the back color of all the record is...
  14. ivatanakoo

    printing report

    sir olaf: REPORT FORM c:\inventory_system\reports\ics.frx PREVIEW this will print all the data on the table. by the way tnx...
  15. ivatanakoo

    printing report

    actually i want to print different report, if price is greater than 10000 then prints are.frx report of the selected name with the same number elseif price is less than 6000 then prints ics.frx report of the selected name with the same number else messagebox(no report) endif tnx sir olaf..
  16. ivatanakoo

    printing report

    i have table name issue fields id name item aqdate number price sample records 1 bryan laptop 10/10/14 ARE#14123BY 10000 2 simon desktop 10/10/14 ICS#14321SY 10000 1 bryan van 10/10/14 ICS#14123BY 5000 want: when i filter name bryan or number ARE#14123BY filter number or the name and determine...
  17. ivatanakoo

    edit button in vfp9

    i forgot to remove it since i use locate earlier.sorry..
  18. ivatanakoo

    edit button in vfp9

    here is my code in selecting the picture x = getpict() if ! empty (x) select item_table SET ORDER TO itm_id replace image WITH x this.picture=item_table.image [highlight #EF2929]thisform.refresh[/highlight] ENDIF thanks for your replies. found i that it was my refresh on the form...
  19. ivatanakoo

    how to filter date/month in vfp

    ....code in my interactive chage combo box... SELECT issue_table SET ORDER TO date thisform.pgfinventory.issuetab.TXT_search.InputMask = "##/##/##" thisform.pgfinventory.issuetab.txt_search.SetFocus() ....code in interactive change of my search textbox.... IF...
  20. ivatanakoo

    how to filter date/month in vfp

    i use the ctod() but it filters only after entering the date i want to filter the month need help..tnx

Part and Inventory Search

Back
Top