Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Append via scan
Message
From
28/02/2005 03:37:01
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Append via scan
Environment versions
Visual FoxPro:
VFP 7
Database:
Oracle
Miscellaneous
Thread ID:
00991093
Message ID:
00991093
Views:
45
hi all,

i try to insert billno,datein for all records at my table as under,
but i see the billno,and datein at the last record for my bill as
item no   value .........billno  datein       total
1         100            0       space         0    
2         250            0        
3         40             1       01/01/2005    390
********************************************************
i need to see at my table as
item no   value .........billno  datein       total
1         100            1      01/01/2005    390   
2         250            1      01/01/2005    390
3         40             1      01/01/2005    390
*********************************************************
i try with this code under,but it change all billno and datein for all records at mytable
  use mstr
  Append From Dbf('temp')
scan
   replace w1 with thisform.text14.value
  replace w2 with thisform.text16.value
 *INSERT  INTO  mstr(billno,datein) VALUES (val(right (thisform.text1.Value,4)),DATE())&& in this case it append new record but i need to insert at the same records
  replace dis with thisform.text27.value
  replace net with thisform.text28.value
endscan
thanks.
Next
Reply
Map
View

Click here to load this message in the networking platform