by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
Create a panel and store default Search within that panel Set Visible attribute to False so that the default search is hidden Add new Search Locate Core.css using in the Hive or use SharePoint Designer Controls the light blue border around the search box td.ms-sbcell{...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
After much head banging!! I have drawn the conclusion that MySites do not work like your typical SharePoint Portal Sites. Normally one would simply check out a page whether its was a master page or an ASPX page and modify it using sharepoint designer. While...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
Problem: When attempting to open documents on our sharepoint portal we are being prompted for credentials. cancelling the prompt allows the document to open. Later if the user clicks on “Edit Document” from the menu above the credential prompt reappears....
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
After Configuring SQL Reporting Services you may receive and error HTTP failure 400 when navigating to http:///reports. This may happen if the Default Web Site in IIS is disabled/stopped.
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
1. Create a Visual Basic Class for your project by right clicking the project and select add. 2. Change the language to Visual Basic and select Class from the list of Installed Templates. 3. Name the class clsNotify. Add the code below to the class.(You...
by jeremy@bondbyte.com | Apr 23, 2014 | Uncategorized
SELECT t.NAME AS TableName, p.rows AS RowCounts, SUM(a.total_pages) * 8 AS TotalSpaceKB, SUM(a.used_pages) * 8 AS UsedSpaceKB, (SUM(a.total_pages) – SUM(a.used_pages)) * 8 AS UnusedSpaceKB FROM sys.tables t INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id...