Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Indicates whether project is ATL-based.
function IsATLProject(
oProj
);
Parameters
- oProj
The selected project.
Return Value
true if the project is an ATL project; otherwise, false.
Remarks
Indicates whether project is ATL-based.
Example
function CanAddATLSupport(selProj, selObj)
{
if (IsATLProject(selProj))
{
var L_ErrMsg1_Text = "Current project already has ATL support.";
wizard.ReportError(L_ErrMsg1_Text);
return false;
}
See Also
Tasks
Reference
Concepts
Customizing C++ Wizards with Common JScript Functions