Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Import MEMO fields from Excell xls files
Message
 
 
À
25/04/2002 14:37:39
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00649136
Message ID:
00649246
Vues:
10
Alan,

If you know you only have three columns change the innermost loop to:
for i = 1 to 3
   ? oRow.Columns(i).Value
endfor
You can also stop the row iteration when you find the first blank row, otherwise it'll process every possible row in the spreadsheet.
if ( empty( oRow.Columns(1).Value ) )
   exit
endif
>How can I limit the number of columns that are processed. It looks like it is processing over a hundred columns for each row. In reality I only need the first three.
df (was a 10 time MVP)

df FoxPro website
FoxPro Wiki site online, editable knowledgebase
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform