ConvertProjectToAttributed
Consente di convertire un progetto ATL senza attributi in un progetto con attributi.
function ConvertProjectToAttributed( );
Valore restituito
true se la conversione del progetto è avvenuta correttamente, false in caso contrario.
Note
Chiamare questa funzione per convertire un progetto ATL senza attributi in un progetto con attributi. Per ulteriori informazioni, vedere Programmazione con attributi.
Esempio
// 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;
}
Vedere anche
Attività
Creazione di una procedura guidata personalizzata
Riferimenti
Concetti
Personalizzazione delle procedure guidate C++ con funzioni comuni JScript
Progettazione di una procedura guidata