Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Word.Application Question
Message
De
15/05/2003 09:04:08
 
 
À
13/05/2003 12:53:12
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00787798
Message ID:
00788652
Vues:
10
>All
>
>I'm trying to do the following: I want to create a table starting with 1 Row and 2 Columns. I only want to insert rows after the previously inserted row if the field from the database is not empty. I don't know how many rows I'll be needing because of the fact that I only want to insert if the field from the database is not empty.

Take a look at the Rows.Add method. You can use code like:

oTable = oDoc.Tables.Add(oRange,1,2)
* Fill in the first row
oRow = oTable.Rows.Add
* Now you have two and, as a bonus, the second row has the same formatting as the first.

Tamra
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform