Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Get list of classes in VCX file?
Message
De
31/08/2013 11:20:42
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01581757
Message ID:
01581760
Vues:
58
>Is there a way to open a class library file (.vcx) and get a list of all classes in it? TIA.


You can always use the manual technique:
USE myClassFile.vcx ALIAS myVcx

SELECT CAST(objName AS c(100)) AS cClass ;
    FROM myVcx ;
    WHERE "class" $ LOWER(Reserved1) AND NOT DELETED() ;
    INTO CURSOR c_classList

BROWSE NOWAIT
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform