ConvertProjectToAttributed
Convertit un projet ATL sans attributs en projet avec attributs.
function ConvertProjectToAttributed( );
Valeur de retour
Retourne true si la conversion du projet a réussi ; sinon false.
Notes
Appelez cette fonction pour convertir un projet ATL d'un projet sans attributs en projet avec attributs.Pour plus d'informations, consultez Programmation par attributs.
Exemple
// Create a function called CheckAddtoProject.
function CheckAddtoProject(oProj)
{
// Is the project attributed already?
try
{
if (!IsAttributedProject(wizard))
{
// If the project is not converted to attributed, return false.
if (!ConvertProjectToAttributed(oProj))
return false;
}
}
catch (e)
{
var L_ErrMsg1_Text = "Error in CheckAddtoProject: ";
wizard.ReportError( L_ErrMsg1_Text + e.description);
return false;
}
return true;
}
Voir aussi
Tâches
Création d'un Assistant personnalisé
Référence
Concepts
Personnalisation des Assistants C++ à l'aide des fonctions JScript classiques