You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Converts an ATL nonattributed project to attributed.
Syntax
function ConvertProjectToAttributed( );
Return Value
true if the project was converted successfully; otherwise false.
Remarks
Call this function to convert an ATL project from nonattributed to attributed. See Attributed Programming for more information.
Example
// 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;
}