Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Listing contents of Zip file
Message
De
05/04/2004 11:22:18
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00892176
Message ID:
00892294
Vues:
21
You could create an array of the names with
oShell = CREATEOBJECT("Shell.Application")
oFld = oShell.NameSpace("C:\temp\test.zip")
oIts = oFld.Items
t = 0
FOR EACH oFile IN oIts
	t = t + 1
	DIMENSION arrFNames(t)
	arrFNames(t) = oFile.Name
ENDFOR
and use this as the control source for the listbox
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform