Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help with GENERAL Fields please
Message
 
 
À
15/07/2002 10:18:14
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00678670
Message ID:
00678683
Vues:
15
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform