locked
Task list RRS feed

  • Question

  • put some tasks in the Error List Window by the following code:
    VCCodeFunction m_intern;
    m_outwin.OutputTaskItemString(
                  m_Intern.File.ToString() + "(" + m_Intern.StartPoint.Line.ToString() + ") ",
                  vsTaskPriority.vsTaskPriorityMedium,
                  vsTaskCategories.vsTaskCategoryComment,
                  vsTaskIcon.vsTaskIconComment,
                  m_Intern.File,
                  m_Intern.StartPoint.Line,
                  m_Intern.Name + " has an undocumented return value." + Environment.NewLine,
                  true);


    The message appears in the Error List Window seeming correct shwoing the file and the line of the function. But is not possible to jump to the source by double clicking on the item. What is going wrong?

    Friday, February 23, 2007 1:26 AM