Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Append from grid
Message
From
24/08/2005 09:52:15
 
 
To
24/08/2005 09:38:42
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 8
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01043177
Message ID:
01043313
Views:
8
hi,
thank you.

>>>>hi all,
>>>>
>>>>would you help,
>>>>
>>>>i need to save (append) all fields and records except one field from mygrid to another table,
>>>>
>>>>code to built the grid
>>>>
>>>>SELECT course.coursenumb,  course.coursename, ;
>>>>       table2.g1, table2.g2, table2.wm1, table2.g3, table2.tot1, ;
>>>>        table2.g4, table2.g5, table2.wm2, table2.g6, table2.tot2, table2.ltot  ;
>>>>  from Course ;
>>>>  inner join TABLE2 on table2.no = course.no ;
>>>>  into cursor csrCourseStats readwrite
>>>>
>>>>Thisform.Grid1.RecordSource = "csrCourseStats"
>>>>
>>>>i try as
>>>>use stud && i get error message file is in use
>>>>append from (...........)
>>>>
>>>>thanks
>>>
>>>
>>>LOCAL lbFlUsed
>>>IF NOT USED("Stud")
>>>   USE Stud IN 0
>>>   lbFlUsed = .t.
>>>ENDIF
>>>SELECT Stud
>>>APPEND FROM (DBF("csrCourseStats"))
>>>IF lbFlUsed
>>>   USE IN Stud
>>>ENDIF
>>>
>>
>>Not to be picky, but should not the variable be called lbFlNotUsed? < g >
>
>Pardon for jump in
>
>1. it is call after the USE command then the name is correct
>2. but it is useless
>
>IF NOT USED("Stud")
>   USE Stud IN 0
>ENDIF
>SELECT Stud
>APPEND FROM DBF("csrCourseStats")
>USE
>
Previous
Reply
Map
View

Click here to load this message in the networking platform