Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
About add/remove field in runtime and subtran.
Message
De
30/11/1999 13:12:11
Jacky Yuen
Myth Group Computer Technology
Hong Kong, Hong Kong
 
 
À
30/11/1999 12:17:53
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00296923
Message ID:
00296985
Vues:
38
>>Hi ,
>> I have two problems now.
>>
>> Firstly ,I doubt if there is any command that can add/remove field in table during runtime ?
>>
>
>Look at the ALTER TABLE command.
>
>> Then ,I try to use subtran to remove chr(13) in memo field ,but fail.
>>Code is here :
>> StrA = chr(13)
>> StrB = Chr(13) + Chr(13)
>> StrC = Subtran(StrC ,StrA ,StrB)
>>
>
>To remove all CHR(13) occurances from a memory field:
>
>StrC = CHRTRAN(StrC, CHR(13), "") && faster, but limited see docs
>
>or
>
>StrC = STRTRAN(StrC, CHR(13), "") && not subtran!!!!
>
>To reduce all occurances of multiple CHR(13) to a single CHR(13)
>
>StrC = STRTRAN(StrC, CHR(13) + CHR(13), CHR(13)) && cannot use CHRTRAN here

hmm .. I really doubt that why it happen ,but when I try to use CHRTRAN or STRTRAN ,nothing change in the text.
I wanna ask if CHR(13) equal to Press the key ?
Coz I wanna remove double with singal .
I'm a beginner of Visual Foxpro 5.0 ,thanx for help ^^
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform