April 15th, 2009
Just a little sample that I couldn't find anywhere. This will walk the active project of a solution. I am refining it to walk the entire sollution (all projects) and will post that when done.
C#:
-
private void TestProjectObjectModel()
-
{
-
StringBuilder sb =
new StringBuilder
();
-
Array currentProjects = (Array)this._applicationObject.ActiveSolutionProjects;
-
string indention = "";
-
if (currentProjects.Length> 0)
-
{
-
foreach (Project currentProject in currentProjects)
-
{
-
parseProject(sb, currentProject.ProjectItems, indention);
-
}
-
}
-
Console.WriteLine(sb.ToString());
-
}
-
-
private static void parseProject(StringBuilder sb, ProjectItems currentProject, string indention)
-
{
-
foreach (ProjectItem item in currentProject)
-
{
-
if (item != null)
-
{
-
sb.AppendFormat("{3}Name: {0}, Kind: {1}{2}", item.Name, item.Kind, Environment.NewLine, indention);
-
}
-
if (item.ProjectItems.Count> 0)
-
{
-
parseProject(sb, item.ProjectItems, indention + " ");
-
}
-
}
-
}
Posted in Programming | No Comments »
March 22nd, 2009
Heather's mother is coming into town for a visit, so this past week has been more 'honey do' than study. This is just a delay, not a termination of my quest for certification.
Posted in Programming | No Comments »
March 3rd, 2009
I passed! I reviewed last night with 6 practice tests and got a 1000 on all but one (933) and took the exam today. I found the exam included more low level diagnostic details than the review material, but that the form and material covered was very similar. I felt confident throughout the test and was very sure on 70% of the questions. I believe I marked 8 of the 10 or so questions I missed. My pass was a 794 with my Implement, Manage, and Maintain Routing and Remote Access being less than 50% correct. I believe this is the first (or at most the second) exam I have taken that I got a full bar as a result (Implement, Manage, and Maintain IP Addressing). On the whole, I found the uCertify test preparation to be well worth the time and effort. The material was presented well, the questions covered the material, and the structure allows for a good way to top off your knowledge preparing for a test. It definitely directly contributed to my passing the exam.
I now have my MCSA in Windows 2003. I will be taking the SQL Server 2008 exam next, but I want to eventually upgrade my MCSA to an MCSE in 2008 with the security component. I believe that to be a good complement to my development and Architecture background.
Posted in Certification | 2 Comments »