Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help with GENERAL Fields please
Message
 
 
To
15/07/2002 10:18:14
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00678670
Message ID:
00678683
Views:
14
You can copy current record to a temp file, change it there and append back to the table
lcTempFIle = " ... "
SELECT mytable
COPY NEXT 1  TO (lcTempFIle )
...

SELECT mytable
APPEND FROM (lcTempFIle )
ERASE (lcTempFIle )
You can aslo do the same using SELECT ... INTO CURSOR READWRITE.

>in an application i have a general field which is used to hold a barcode image for printing. This is generated by an ocx (tbarcode4).
>
>i find that i need to create a copy of the record in order to do some manipulation of the fields. however the scatter/gather as i am sure you all know does not copy general fields. Is there any way to copy the contents of the original records General field without having to re barcode the record ?
>
>TIA
>
>Colin Burton
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform