Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get records
Message
From
30/08/2004 03:08:43
 
 
To
30/08/2004 01:23:08
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00937427
Message ID:
00937507
Views:
20
hi,
thank you very much,
it works,

if i want to get 1400 records from table(aliq) to insert table(aliq1) for every No,but some time i can't find 100 record for ex.. No=10 i find 90 records only, i need to get 110 records from next No,

i'll try ,but not work
CLOSE ALL && Bad Idea to close everything, but not the cause of your current problems
SET SAFETY off

USE aliq1
SELECT 0
USE aliq EXCL
INDEX ON no TAG no
FOR i = 1 TO 14 && assume 20 values for flag
   SEEK i  

   COPY TO temp1 NEXT (thisform.text1.Value) WHILE no = i
   IF thisform.text1.Value<i
      thisform.text2.Value=thisform.text1.Value-i
   
         SELECT aliq1
        APPEND FROM temp1
      thisform.text1.Value=thisform.text1.Value+thisform.text2.Value
     
      SELECT aliq
  endif

NEXT
thanks.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform