Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Importing data
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Divers
Thread ID:
00387808
Message ID:
00387840
Vues:
13
Hi Ryan,
Importing from a text file is usually a straight forward process and not one that would warrant looking at the code of the wizard to help you!

At it's very simplest you could try:
APPEND FROM ? TYPE DELIM
Or if you want a more robust implementation, prompt the User to select a file first using:
    cFileName = GETFILE( -see on-line help for parameters- )</re>
then<pre>IF NOT EMPTY( cFileName )
    APPEND FROM (cFileName) TYPE DELIM
ENDIF
Your dates do not look like they should cause a problem. Hope this helps.
Houston.
censored.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform