Most Awesome Bird Ever!

Posted in Awesome Animals | Leave a comment

Best Practices in Developing Requirements for SharePoint Projects

Here is a great presentation on best practices for developing in SharePoint.

Posted in SharePoint | Tagged , , | Leave a comment

SharePoint Best Practices Conference

Hoping I can attend the SharePoint Best Practices conference in Washington, D.C. on August 24-27. The agenda has an awesome line-up of programs!

SharePoint Best Practices Conference

John

Posted in Microsoft, SharePoint | Tagged , , , | Leave a comment

SharePoint 2010 Web App Repeatedly Prompting for Login

I am new to SharePoint 2010 and recently ran into a problem after creating a new Web Application on my SharePoint sandbox server. I was able to create a new web application and add a site collection to it but I was not able to view the site in a web browser.  After spending several days (not complete days) working on this I decided to post a question on the Technet form for SharePoint 2010.

Once I posted a question on the forum I found a link, in the forum, that contained the answer I needed.  If you are faced with the issue I was, here are the links to the fix.  The first one is the site that I found the link to Microsoft KB article on and the second is the actual Microsoft KB article with the fix.

artykul8

Microsoft 

Good luck.

Posted in Microsoft, SharePoint | Tagged , , | Leave a comment

Happy 4th of July!

I wanted to wish everyone a Happy 4th of July!  Please remember those that are fighting for and have fought for our freedom.  Please remember those that have perished fighting for our freedom.  And especially remember God and Constitution for which this great country was built upon.

Posted in America | Tagged , , , , | Leave a comment

SharePoint 2010 Training

I am at the Mother Land this week in Redmond, Washington.  I am taking a course taught by Critical Path Training.  The course is a SharePoint 2010 No-Code developement course.

Posted in SharePoint | Tagged , , | Leave a comment

Dad Life

This was sent to me by a friend. It is really awesome!

Dad Life

Posted in Family | Tagged , , | Leave a comment

LiveCycle – Lock All Form Fields

Have you ever wanted to lock down (make read only) the fields in your form when it moved along in your workflow process?  I found a script (I don’t remember where or I would give credit) that will allow you do that from within your form.

All you need to do is place it in the Variables section of your form heirarchy and call it something simple like lockFields.  Then in your form you can call it by using lockFields.LockAllFields(enter your subform or field reference syntax here).

Hope you find this useful.

/* 
*****************************************************************************
Function: LockAllFields 
Description: This function will lock all fields. 
IN: The parent subform. It could also be an element that contains subform
like form1  
OUT : nothing 
*****************************************************************************
*/
function LockAllFields(myParentObject){ 
var allChildElements; 
var intNumElements; 
var currentElement; 
var j; 

//Get all the child nodes of the parent element 
allChildElements = myParentObject.nodes; 

//Total number of element in the object 
intNumElements = allChildElements.length; 

//Loop through all the child elements 
for(j=0; j< intNumElements;j++){ 
    currentElement = allChildElements.item(j); 
    //If the element is another subform we'll recursively call the function
    //again 
    if(allChildElements.item(j).className == "subform"){ 
        LockAllFields(currentElement); 
        } 
        //If the objects are fields then set the access to readOnly 
        else if(currentElement.className == "field"){ 
            currentElement.access = "readOnly"; 
            } 
            //Check for exclusion groups - Radio Buttons 
            else if(currentElement.className == "exclGroup"){ 
                for(k=0; k< currentElement.nodes.length;k++){ 
                    if(currentElement.nodes.item(k).className == "field"){ 
                        //set the access for the RadioButtons individually 
                        currentElement.access = "readOnly"; 
                    } 
                } 
            } 
    } 
}//end function 
Posted in LiveCycle | Tagged , , | 1 Comment

2010 Grand Canyon Hiking Trip

I had the pleasure spending 9 days at the Grand Canyon during May 2010. It was one of the most incredible places I have ever been to. Six of the nine were spend hiking from the North Rim to the South Rim with a side trip on the Clear Creek trail.

I was contemplating switching to an iPhone at the end of this year but I am definitely not going to after being on this trip. I currently have Verizon coverage and was able to call from the middle of the Grand Canyon, on the Clear Creek trail. Not only that but I was able to send a picture to my wife. My brother and a friend that were with me on the trip have AT&T and they did not have any service whatsoever. I love it!

Anyway, Here are most of the pictures from our trip. I will have more posted tonight.

Grand Canyon 2010 Photos

Posted in Grand Canyon | Tagged , , | Leave a comment

Welcome!

I should have something posted later this morning!

Posted in Uncategorized | Leave a comment